/* ═══════════════════════════════════════════
   星织 — Design System
   Unified brand · Chart track · Tarot track
   ═══════════════════════════════════════════ */

:root {
  --ink: #07080d;
  --ink-2: #0e1018;
  --ink-3: #161922;
  --ink-4: #222636;
  --mist: #8b92a8;
  --fog: #c4c9d8;
  --paper: #f4f0e8;
  --paper-dim: #e8e2d6;

  --gold: #d4af37;
  --gold-soft: #e8c96a;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --cinnabar: #c45c4a;
  --jade: #5a9a7a;
  --indigo: #3d4f8c;

  --violet: #8b6cf0;
  --violet-soft: #b39aff;
  --violet-dim: rgba(139, 108, 240, 0.15);
  --amethyst: #6b4fc0;
  --moon: #e8e4f5;
  --star: #f0e6ff;
  --rose: #d4a0c0;
  --mystic: #c9a0ff;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-cn: "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "DM Sans", "PingFang SC", "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--ink);
  color: var(--fog);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient page glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(212, 175, 55, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(139, 108, 240, 0.09), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(61, 79, 140, 0.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container-wide {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ─── Typography ─── */
.display {
  font-family: var(--font-cn);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--paper);
}

.display-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}

.lead {
  font-size: 1.1rem;
  color: var(--mist);
  max-width: 36em;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 8, 13, 0.88);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cn);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--paper);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  animation: logo-spin 12s linear infinite;
}

.logo-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes logo-spin {
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--mist);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, #c9a227, #e8c96a 50%, #b8941f);
  color: #1a1408;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover { box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35); }

.btn-violet {
  background: linear-gradient(135deg, #6b4fc0, #a78bfa 55%, #7c5cde);
  color: #f8f5ff;
  box-shadow: 0 8px 24px rgba(139, 108, 240, 0.3);
}

.btn-violet:hover { box-shadow: 0 12px 32px rgba(139, 108, 240, 0.4); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  color: var(--mist);
  margin-bottom: 28px;
}

.hero-badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 10px var(--jade);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 20px;
  max-width: 16em;
}

.hero h1 .brand-word {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, var(--gold-soft), var(--paper) 40%, var(--violet-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .line-gold { color: var(--gold-soft); }
.hero h1 .line-violet { color: var(--violet-soft); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--mist);
  max-width: 34em;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

/* Dual product cards */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.realm-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 16, 24, 0.75);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.realm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.realm-card.east {
  border-color: rgba(212, 175, 55, 0.2);
}

.realm-card.east:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.12);
}

.realm-card.west {
  border-color: rgba(139, 108, 240, 0.22);
}

.realm-card.west:hover {
  border-color: rgba(139, 108, 240, 0.5);
  box-shadow: 0 24px 60px rgba(139, 108, 240, 0.14);
}

.realm-card .glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  top: -40px;
  right: -40px;
  animation: glow-breathe 5s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.08); }
}

.realm-card.east .glow { background: var(--gold); }
.realm-card.west .glow { background: var(--violet); }

.realm-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.realm-card.east .realm-tag { color: var(--gold); }
.realm-card.west .realm-tag { color: var(--violet-soft); }

.realm-card h3 {
  font-family: var(--font-cn);
  font-size: 1.6rem;
  color: var(--paper);
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}

.realm-card .brand-line {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 14px;
}

.realm-card p {
  font-size: 0.92rem;
  color: var(--mist);
  flex: 1;
  margin-bottom: 24px;
}

.realm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fog);
  background: rgba(255, 255, 255, 0.03);
}

.realm-card.east .chip {
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--gold-soft);
}

.realm-card.west .chip {
  border-color: rgba(139, 108, 240, 0.3);
  color: var(--violet-soft);
}

/* ─── Sections ─── */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 48px;
  max-width: 40em;
}

.section-head h2 {
  font-family: var(--font-cn);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--paper);
  letter-spacing: 0.06em;
  margin: 12px 0 16px;
}

.section-head p { color: var(--mist); }

/* ─── Steps ─── */
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(22, 25, 34, 0.9), rgba(14, 16, 24, 0.7));
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.step:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: var(--gold-dim);
}

.step h4 {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  color: var(--paper);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.step .metaphor {
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.step p { font-size: 0.92rem; color: var(--mist); }

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

.step-path .step {
  grid-template-columns: 1fr;
  text-align: left;
}

.step-path .step-num { margin-bottom: 8px; }

/* ─── Topics ─── */
.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.topic-card {
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--ink-2);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.35);
}

.topic-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.topic-card h4 {
  font-family: var(--font-cn);
  font-size: 1.05rem;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--mist);
}

/* ─── AI panel ─── */
.ai-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.ai-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(22, 25, 34, 0.95), rgba(10, 12, 18, 0.9));
  position: relative;
  overflow: hidden;
}

.ai-card h3 {
  font-family: var(--font-cn);
  font-size: 1.4rem;
  color: var(--paper);
  margin: 12px 0 14px;
  letter-spacing: 0.06em;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--fog);
}

.feature-list .mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.stack-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: center;
}

.stack-layer {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  transition: transform 0.3s var(--ease);
}

.stack-layer:hover { transform: translateX(6px); }
.stack-layer strong { color: var(--paper); font-weight: 500; }
.stack-layer span { color: var(--mist); font-size: 0.78rem; }
.stack-layer.l1 { border-color: rgba(212, 175, 55, 0.3); }
.stack-layer.l2 { border-color: rgba(139, 108, 240, 0.3); margin-left: 12px; }
.stack-layer.l3 { border-color: rgba(90, 154, 122, 0.35); margin-left: 24px; }
.stack-layer.l4 { border-color: rgba(196, 92, 74, 0.3); margin-left: 36px; }

/* ─── Audience / roadmap ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--ink-2);
}

.audience-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.audience-card:nth-child(1) .label { color: var(--gold); }
.audience-card:nth-child(2) .label { color: var(--violet-soft); }
.audience-card:nth-child(3) .label { color: var(--rose); }

.audience-card h4 {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  color: var(--paper);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--mist);
  margin-bottom: 16px;
}

.audience-card ul li {
  font-size: 0.84rem;
  color: var(--fog);
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 14px;
  position: relative;
}

.audience-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--mist);
}

/* Roadmap timeline */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--violet-soft), var(--mist));
  opacity: 0.4;
}

.road-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
}

.road-step .num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ink);
  position: relative;
  z-index: 1;
}

.road-step:nth-child(1) .num {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

.road-step:nth-child(2) .num {
  border-color: var(--violet-soft);
  color: var(--violet-soft);
}

.road-step:nth-child(3) .num {
  border-color: var(--mist);
  color: var(--mist);
}

.road-step h4 {
  font-family: var(--font-cn);
  color: var(--paper);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.road-step p {
  font-size: 0.85rem;
  color: var(--mist);
}

.road-step .status {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-soft);
}

.road-step:nth-child(2) .status,
.road-step:nth-child(3) .status {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--mist);
}

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

.price-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(212, 175, 55, 0.4);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 40%),
    var(--ink-2);
  transform: scale(1.02);
}

.price-card h4 {
  font-family: var(--font-cn);
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 8px;
}

.price-card .price {
  font-family: var(--font-en);
  font-size: 2.2rem;
  color: var(--gold-soft);
  margin: 12px 0;
}

.price-card .price small {
  font-size: 0.9rem;
  color: var(--mist);
  font-style: normal;
}

.price-card ul {
  flex: 1;
  margin: 16px 0 24px;
}

.price-card ul li {
  font-size: 0.88rem;
  color: var(--fog);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer h5 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 16px;
}

.footer a {
  display: block;
  font-size: 0.9rem;
  color: var(--fog);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--mist);
  margin-top: 12px;
  max-width: 28em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--mist);
}

/* ─── Form ─── */
.form-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--ink-2);
}

.form-panel h3 {
  font-family: var(--font-cn);
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 8px;
}

.form-panel .hint {
  font-size: 0.88rem;
  color: var(--mist);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.field input,
.field select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus {
  border-color: rgba(212, 175, 55, 0.5);
}

.field select option { background: var(--ink-2); }

/* ─── Page hero ─── */
.page-hero {
  padding: 130px 0 40px;
}

.page-hero h1 {
  font-family: var(--font-cn);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--paper);
  letter-spacing: 0.08em;
  margin: 12px 0 8px;
}

.page-hero .brand-kicker {
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold-soft);
}

/* ─── Journey tabs ─── */
.journey-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: fit-content;
}

.journey-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--mist);
  transition: all 0.25s;
}

.journey-tab.active {
  background: var(--gold-dim);
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.journey-panel { display: none; }
.journey-panel.active { display: block; animation: fadeUp 0.45s var(--ease); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.spirit-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.spirit-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-3px);
}

.spirit-card .emoji { font-size: 1.6rem; margin-bottom: 8px; }
.spirit-card h5 {
  font-family: var(--font-cn);
  font-size: 0.95rem;
  color: var(--paper);
  margin-bottom: 4px;
}
.spirit-card p { font-size: 0.75rem; color: var(--mist); }

.chart-demo {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.readout-block {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--ink-2);
}

.readout-block h5 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.readout-block p {
  font-size: 0.92rem;
  color: var(--fog);
}

.wuxing-bars {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.wuxing-row {
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
}

.wuxing-row .name { color: var(--paper); }
.wuxing-row .val { color: var(--mist); text-align: right; }

.bar-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  transform-origin: left;
  animation: bar-grow 1.4s var(--ease) both;
}

@keyframes bar-grow {
  from { transform: scaleX(0); }
}

.bar-fill.mu { background: #5a9a7a; width: 72%; }
.bar-fill.huo { background: #c45c4a; width: 45%; }
.bar-fill.tu { background: #d4af37; width: 88%; }
.bar-fill.jin { background: #c4c9d8; width: 38%; }
.bar-fill.shui { background: #5b7db8; width: 55%; }

.skill-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.skill-box {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.skill-box.use {
  background: rgba(90, 154, 122, 0.12);
  border: 1px solid rgba(90, 154, 122, 0.3);
  color: #9dceb4;
}

.skill-box.avoid {
  background: rgba(196, 92, 74, 0.1);
  border: 1px solid rgba(196, 92, 74, 0.3);
  color: #e0a090;
}

.skill-box strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--paper);
}

/* ═══════════════════════════════════════
   星织RY SPHERE — 浑仪 / 钦天监意象
   ═══════════════════════════════════════ */

.armilla-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.armilla-stage.casting .armilla-svg {
  animation: cast-pulse 1.2s var(--ease);
}

@keyframes cast-pulse {
  0% { filter: drop-shadow(0 0 0 transparent); transform: scale(1); }
  40% { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.55)); transform: scale(1.04); }
  100% { filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.2)); transform: scale(1); }
}

.armilla-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.15));
}

.armilla-svg .ring {
  fill: none;
  stroke: rgba(212, 175, 55, 0.45);
  stroke-width: 1.2;
}

.armilla-svg .ring-dim {
  stroke: rgba(212, 175, 55, 0.18);
  stroke-dasharray: 4 6;
}

.armilla-svg .ring-accent {
  stroke: rgba(232, 201, 106, 0.7);
  stroke-width: 1.6;
}

.armilla-svg .pivot {
  fill: var(--gold-soft);
  filter: url(#gold-glow);
}

.armilla-svg .star-dot {
  fill: var(--gold-soft);
  opacity: 0.7;
}

.armilla-svg .heaven-script {
  font-family: var(--font-cn);
  font-size: 11px;
  fill: rgba(232, 201, 106, 0.55);
  letter-spacing: 0.3em;
}

.armilla-svg .day-char {
  font-family: var(--font-cn);
  font-size: 36px;
  fill: var(--gold-soft);
  text-anchor: middle;
  dominant-baseline: central;
}

.armilla-svg .day-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  fill: var(--mist);
  text-anchor: middle;
  letter-spacing: 0.2em;
}

/* Rotating groups — different axes feel via 2D rotate */
.spin-slow { animation: spin 48s linear infinite; transform-origin: 200px 200px; }
.spin-mid { animation: spin 32s linear infinite reverse; transform-origin: 200px 200px; }
.spin-fast { animation: spin 22s linear infinite; transform-origin: 200px 200px; }
.spin-tilt {
  animation: spin-tilt 40s linear infinite;
  transform-origin: 200px 200px;
}

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

@keyframes spin-tilt {
  0% { transform: rotate(0deg) scaleY(0.55); }
  100% { transform: rotate(360deg) scaleY(0.55); }
}

/* Pillars orbiting outside SVG via HTML overlay */
.pillar-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pillar {
  position: absolute;
  text-align: center;
  z-index: 2;
  animation: pillar-float 6s ease-in-out infinite;
}

.pillar .stem {
  font-family: var(--font-cn);
  font-size: 1.15rem;
  color: var(--paper);
  display: block;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.pillar .branch {
  font-family: var(--font-cn);
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.pillar .label {
  font-size: 0.65rem;
  color: var(--mist);
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.pillar.year { top: 2%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.pillar.month { right: 2%; top: 50%; transform: translateY(-50%); animation-delay: 0.8s; }
.pillar.day { bottom: 2%; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }
.pillar.hour { left: 2%; top: 50%; transform: translateY(-50%); animation-delay: 2.4s; }

@keyframes pillar-float {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

/* 天书 / scroll reveal */
.scroll-seal {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cn);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: rgba(232, 201, 106, 0.55);
  white-space: nowrap;
}

.scroll-seal::before,
.scroll-seal::after {
  content: "〔 〕";
  letter-spacing: 0;
  opacity: 0.4;
}

/* Cast overlay particles (canvas-free CSS stars) */
.celestial-dust {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 50%;
}

.celestial-dust span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0;
  animation: dust-drift 8s linear infinite;
  box-shadow: 0 0 6px var(--gold-soft);
}

@keyframes dust-drift {
  0% { opacity: 0; transform: translateY(20px) scale(0.5); }
  15% { opacity: 0.8; }
  85% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-80px) scale(1); }
}

/* 天机 unveiling curtain on cast */
.tianji-veil {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.12), transparent 50%),
    rgba(7, 8, 13, 0.55);
  display: grid;
  place-items: center;
  transition: opacity 0.4s;
}

.tianji-veil.show {
  opacity: 1;
  pointer-events: auto;
}

.tianji-veil .seal-text {
  font-family: var(--font-cn);
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.5em;
  color: var(--gold-soft);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  animation: seal-in 1.4s var(--ease) both;
}

@keyframes seal-in {
  0% { opacity: 0; letter-spacing: 1em; filter: blur(8px); }
  40% { opacity: 1; filter: blur(0); }
  100% { opacity: 0; letter-spacing: 0.5em; }
}

/* ═══════════════════════════════════════
   TAROT — mystical occult layer
   ═══════════════════════════════════════ */

body.tarot-page::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(139, 108, 240, 0.18), transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(212, 160, 192, 0.08), transparent 45%),
    radial-gradient(ellipse 40% 30% at 90% 70%, rgba(107, 79, 192, 0.12), transparent 45%);
}

.mystic-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mystic-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orb-drift 18s ease-in-out infinite;
}

.mystic-bg .orb.o1 {
  width: 320px;
  height: 320px;
  background: #6b4fc0;
  top: 10%;
  left: 15%;
}

.mystic-bg .orb.o2 {
  width: 260px;
  height: 260px;
  background: #8b6cf0;
  top: 50%;
  right: 10%;
  animation-delay: -6s;
}

.mystic-bg .orb.o3 {
  width: 200px;
  height: 200px;
  background: #d4a0c0;
  bottom: 10%;
  left: 40%;
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Floating runes */
.mystic-bg .rune {
  position: absolute;
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: rgba(201, 160, 255, 0.2);
  animation: rune-float 14s linear infinite;
  letter-spacing: 0.2em;
}

@keyframes rune-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) rotate(20deg); opacity: 0; }
}

.tarot-hero {
  text-align: center;
  padding: 140px 0 60px;
  position: relative;
  z-index: 1;
}

.tarot-hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--moon);
  margin: 16px 0 12px;
  text-shadow: 0 0 60px rgba(139, 108, 240, 0.35);
}

.tarot-hero .cn-title {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--violet-soft);
}

.tarot-hero .cn-title span {
  font-family: var(--font-cn);
  letter-spacing: 0.3em;
  margin-left: 8px;
  opacity: 0.7;
}

.tarot-spread {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 48px 0 20px;
  perspective: 1200px;
}

.tarot-card {
  width: 150px;
  height: 240px;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
  animation: card-entrance 0.9s var(--ease) both;
}

.tarot-card:nth-child(1) { animation-delay: 0.1s; }
.tarot-card:nth-child(2) { animation-delay: 0.25s; }
.tarot-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes card-entrance {
  from {
    opacity: 0;
    transform: translateY(40px) rotateY(-20deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}

.tarot-card:hover:not(.flipped) {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 12px 28px rgba(139, 108, 240, 0.45));
}

.tarot-card.flipped {
  transform: rotateY(180deg);
  filter: drop-shadow(0 16px 40px rgba(139, 108, 240, 0.4));
}

.tarot-card .face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  border: 1px solid rgba(176, 154, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.tarot-card .back {
  background:
    radial-gradient(circle at 50% 30%, rgba(139, 108, 240, 0.4), transparent 55%),
    linear-gradient(160deg, #241a42, #0c0916 70%);
  overflow: hidden;
}

.tarot-card .back::before {
  content: "✦";
  font-size: 2rem;
  color: var(--violet-soft);
  opacity: 0.7;
  animation: symbol-pulse 3s ease-in-out infinite;
  z-index: 1;
}

.tarot-card .back::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 160, 255, 0.2);
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(139, 108, 240, 0.04) 8px,
      rgba(139, 108, 240, 0.04) 16px
    );
}

@keyframes symbol-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.tarot-card .front {
  background:
    radial-gradient(circle at 50% 20%, rgba(139, 108, 240, 0.25), transparent 50%),
    linear-gradient(165deg, #2e2448, #120e1c);
  transform: rotateY(180deg);
}

.tarot-card .front .roman {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--violet-soft);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.tarot-card .front .name {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--moon);
  text-align: center;
  margin-bottom: 8px;
}

.tarot-card .front .name-cn {
  font-family: var(--font-cn);
  font-size: 0.85rem;
  color: var(--mist);
  letter-spacing: 0.15em;
}

.tarot-card .front .symbol {
  font-size: 2.2rem;
  margin: 16px 0;
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(201, 160, 255, 0.5));
}

.tarot-card .pos-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  white-space: nowrap;
  backface-visibility: hidden;
}

.tarot-reading {
  max-width: 640px;
  margin: 48px auto 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 108, 240, 0.3);
  background: rgba(30, 22, 53, 0.55);
  backdrop-filter: blur(12px);
  text-align: left;
  animation: fadeUp 0.6s var(--ease);
  box-shadow: 0 0 60px rgba(139, 108, 240, 0.12);
}

.tarot-reading h4 {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--moon);
  margin-bottom: 12px;
}

.tarot-reading p {
  font-size: 0.95rem;
  color: var(--fog);
  margin-bottom: 12px;
}

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

.mode-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 108, 240, 0.18);
  background: rgba(18, 16, 30, 0.8);
  text-align: left;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.mode-card:hover {
  border-color: rgba(139, 108, 240, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 108, 240, 0.15);
}

.mode-card h4 {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--moon);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.mode-card .cn {
  font-family: var(--font-cn);
  font-size: 0.85rem;
  color: var(--violet-soft);
  margin-bottom: 12px;
}

.mode-card p {
  font-size: 0.85rem;
  color: var(--mist);
}

/* Shuffle animation */
.tarot-spread.shuffling .tarot-card {
  animation: shuffle-wobble 0.5s ease-in-out;
}

@keyframes shuffle-wobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-12px) rotate(-4deg); }
  75% { transform: translateY(-8px) rotate(4deg); }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .dual-grid,
  .chart-demo,
  .ai-panel,
  .footer-grid { grid-template-columns: 1fr; }

  .topics,
  .audience-grid,
  .pricing,
  .tarot-modes,
  .step-path,
  .roadmap { grid-template-columns: 1fr; }

  .roadmap::before { display: none; }
  .spirit-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .stack-layer.l2, .stack-layer.l3, .stack-layer.l4 { margin-left: 0; }
}

@media (max-width: 640px) {
  .container, .container-wide { width: calc(100% - 32px); }
  .nav-links { display: none; }
  .topics,
  .audience-grid,
  .pricing,
  .tarot-modes,
  .step-path,
  .form-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .tarot-card { width: 110px; height: 176px; }
  .hero { padding-top: 100px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .skill-split { grid-template-columns: 1fr; }
}

.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.muted { color: var(--mist); }
.gold { color: var(--gold-soft); }
.violet { color: var(--violet-soft); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════
   Report layout & multi-step flows
   ═══════════════════════════════════════ */

.web-banner {
  background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(139,108,240,0.1));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  font-size: 0.8rem;
  color: var(--mist);
  text-align: center;
  position: relative;
  z-index: 90;
  margin-top: 72px;
}

.web-banner strong { color: var(--gold-soft); font-weight: 500; }

/* Desktop reading width for report */
.report-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 80px;
}

.report-toc {
  position: sticky;
  top: 100px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(14,16,24,0.9);
  backdrop-filter: blur(12px);
}

.report-toc h4 {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.report-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--mist);
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
  border-left: 2px solid transparent;
}

.report-toc a:hover,
.report-toc a.active {
  background: var(--gold-dim);
  color: var(--gold-soft);
  border-left-color: var(--gold);
}

.report-hero-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.25);
  background:
    radial-gradient(circle at 0% 0%, rgba(212,175,55,0.1), transparent 50%),
    var(--ink-2);
  margin-bottom: 28px;
  align-items: center;
}

.report-hero-card .mini-armilla {
  width: 180px;
  height: 180px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.report-section {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--ink-2);
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}

.report-section h2 {
  font-family: var(--font-cn);
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: 0.08em;
  margin: 8px 0 16px;
}

.report-section .layer-num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.report-section .prose {
  font-size: 1rem;
  color: var(--fog);
  line-height: 1.8;
  max-width: 52em;
}

.report-section .prose + .prose { margin-top: 14px; }

.cite-bar {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: var(--mist);
}

.cite-bar code {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(212,175,55,0.1);
  color: var(--gold-soft);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  justify-content: space-between;
  align-items: center;
}

.progress-rail {
  display: flex;
  gap: 6px;
  margin: 20px 0 8px;
}

.progress-rail span {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
}

.progress-rail span.on {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

/* Tarot flow steps */
.flow-steps {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: var(--mist);
}

.flow-step.on {
  border-color: rgba(139,108,240,0.45);
  color: var(--violet-soft);
  background: var(--violet-dim);
}

.flow-step .n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  border: 1px solid currentColor;
}

.question-box {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: left;
}

.question-box textarea {
  width: 100%;
  min-height: 100px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(139,108,240,0.3);
  background: rgba(18,16,30,0.8);
  color: var(--moon);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  resize: vertical;
  outline: none;
}

.question-box textarea:focus {
  border-color: rgba(139,108,240,0.6);
  box-shadow: 0 0 0 3px rgba(139,108,240,0.12);
}

.question-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.question-presets button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: var(--mist);
  transition: border-color 0.2s, color 0.2s;
}

.question-presets button:hover {
  border-color: rgba(139,108,240,0.4);
  color: var(--violet-soft);
}

/* Desktop shell */
@media (min-width: 1100px) {
  .container { width: min(1180px, calc(100% - 64px)); }
  .container-wide { width: min(1320px, calc(100% - 64px)); }
  .hero h1 { font-size: 3.6rem; }
}

@media (max-width: 900px) {
  .report-layout { grid-template-columns: 1fr; }
  .report-toc { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .report-toc a { border-left: none; }
  .report-hero-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .web-banner { margin-top: 64px; }
}

/* Site map footer note */
.phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(90,154,122,0.4);
  color: #9dceb4;
  background: rgba(90,154,122,0.1);
}

/* ═══════════════════════════════════════
   HOME — 四象背景 + 命数主入口
   ═══════════════════════════════════════ */

.page-home {
  background: #07080d;
}

/* 关闭首页默认彩色光晕，避免与四象图打架 */
body.page-home::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.home-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #07080d;
}

.home-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* contain：完整保留上朱雀、下玄武，不被宽屏裁切 */
  object-fit: contain;
  object-position: center center;
  opacity: 0.88;
  display: block;
}

.home-bg__veil {
  position: absolute;
  inset: 0;
  /* 蒙版再轻：中心几乎不挡图，仅略压字区对比；上下更透以显朱雀/玄武 */
  background:
    radial-gradient(
      ellipse 55% 42% at 50% 48%,
      rgba(7, 8, 13, 0.42) 0%,
      rgba(7, 8, 13, 0.18) 55%,
      rgba(7, 8, 13, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 8, 13, 0.12) 0%,
      rgba(7, 8, 13, 0.05) 18%,
      rgba(7, 8, 13, 0.2) 45%,
      rgba(7, 8, 13, 0.08) 78%,
      rgba(7, 8, 13, 0.2) 100%
    );
}

.page-home .nav,
.page-home .home-hero,
.page-home .home-section,
.page-home .footer {
  position: relative;
  z-index: 1;
}

.page-home .nav.scrolled {
  background: rgba(7, 8, 13, 0.9);
}

.home-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 72px;
  text-align: center;
}

.home-hero-inner {
  max-width: 720px;
}

.home-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.home-title {
  margin-bottom: 8px;
}

.home-title .brand-word {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 4.8rem);
  letter-spacing: 0.12em;
  background: linear-gradient(120deg, var(--gold-soft), var(--paper) 45%, #c9b896);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.home-tagline {
  font-family: var(--font-cn);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: 0.28em;
  color: var(--paper);
  margin-bottom: 20px;
}

.home-lead {
  font-size: 1.05rem;
  color: var(--mist);
  line-height: 1.85;
  margin: 0 auto 36px;
  max-width: 28em;
}

.home-hero .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.home-section {
  padding: 88px 0;
}

.home-section--dim {
  background: rgba(7, 8, 13, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .section-head h2 {
  color: var(--paper);
}

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

.system-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(14, 16, 24, 0.72);
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  min-height: 280px;
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.08);
}

.system-card__num {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 14px;
}

.system-card h3 {
  font-family: var(--font-cn);
  font-size: 1.35rem;
  color: var(--paper);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.system-card__en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mist);
  margin-bottom: 14px;
}

.system-card p {
  font-size: 0.9rem;
  color: var(--mist);
  flex: 1;
  margin-bottom: 20px;
}

.system-card__cta {
  font-size: 0.88rem;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
}

.learn-list {
  display: grid;
  gap: 18px;
}

.learn-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 16, 24, 0.75);
  backdrop-filter: blur(8px);
}

.learn-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.learn-card h3 {
  font-family: var(--font-cn);
  font-size: 1.35rem;
  color: var(--paper);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.learn-card > p {
  font-size: 0.95rem;
  color: var(--fog);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 52em;
}

.learn-card ul {
  display: grid;
  gap: 8px;
}

.learn-card ul li {
  font-size: 0.88rem;
  color: var(--mist);
  padding-left: 14px;
  position: relative;
}

.learn-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.page-home .footer {
  background: rgba(7, 8, 13, 0.85);
  border-top-color: rgba(212, 175, 55, 0.12);
}

@media (max-width: 900px) {
  .systems-grid {
    grid-template-columns: 1fr;
  }
  .home-hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 56px;
  }
  .home-bg__img {
    opacity: 0.9;
    /* 竖屏仍尽量完整露出四象 */
    object-fit: contain;
  }
}

/* ═══════════════════════════════════════
   v2 polish — mobile nav, trust, results
   ═══════════════════════════════════════ */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 10px 16px;
  background: var(--gold);
  color: #1a1408;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  place-items: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 99;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 16, 0.96);
  backdrop-filter: blur(16px);
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--fog);
  font-size: 0.95rem;
}
.nav-drawer a:hover,
.nav-drawer a.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-soft);
}

@media (max-width: 860px) {
  .nav-links { display: none !important; }
  .nav-cta .btn-sm { display: none; }
  .menu-toggle { display: flex; }
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--mist);
  letter-spacing: 0.04em;
}
.trust-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  font-style: normal;
}

/* Compare how to choose */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 8px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-table th {
  color: var(--gold-soft);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.compare-table td { color: var(--fog); }
.compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.compare-table .name {
  font-family: var(--font-cn);
  color: var(--paper);
  letter-spacing: 0.06em;
}
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(14, 16, 24, 0.7);
}

/* Scroll cue */
.scroll-cue {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mist);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  animation: cue-bob 2.4s ease-in-out infinite;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 0.9; }
}

/* Result panel for divination */
.result-panel {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08), transparent 50%),
    rgba(14, 16, 24, 0.9);
  animation: fadeUp 0.45s var(--ease);
}
.result-panel.show { display: block; }
.result-panel h4 {
  font-family: var(--font-cn);
  font-size: 1.25rem;
  color: var(--paper);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.gua-lines {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
  line-height: 1.7;
  margin: 12px 0;
  white-space: pre;
}
.result-panel .body {
  font-size: 0.95rem;
  color: var(--fog);
  line-height: 1.8;
}
.result-panel .note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--mist);
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Form sample link */
.sample-fill {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.sample-fill:hover { color: var(--gold-soft); }

/* Page progress thin line under nav */
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--gold), var(--violet-soft));
  opacity: 0.7;
  transition: width 0.1s linear;
}

/* Footer full on subpages */
.footer-simple {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
  margin-top: 48px;
}
.footer-simple .footer-bottom {
  border: none;
  padding: 0;
}

/* Hero text readability on busy bg */
.page-home .home-lead,
.page-home .home-tagline {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

/* Button loading state */
.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Focus visible for a11y */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.65);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════
   专业排盘表 / 卦象 — 参照太卜字段结构
   ═══════════════════════════════════════ */

.bz-chart { display: grid; gap: 24px; }
.bz-daymaster {
  display: flex; gap: 18px; align-items: center;
  padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(14,16,24,0.85);
}
.bz-dm-badge {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-cn); font-size: 1.6rem; color: #fff;
  flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.bz-dm-meta h3 {
  font-family: var(--font-cn); color: var(--paper);
  font-size: 1.15rem; margin-bottom: 6px; letter-spacing: 0.06em;
}
.bz-dm-meta p { font-size: 0.88rem; color: var(--mist); }
.bz-dm-sub { margin-top: 4px; font-size: 0.8rem !important; opacity: 0.85; }

.bz-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,12,18,0.9);
}
.bz-table {
  width: 100%; min-width: 480px;
  border-collapse: collapse; font-size: 0.85rem;
}
.bz-th, .bz-td {
  padding: 12px 8px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bz-th {
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--gold-soft); font-weight: 500;
}
.bz-row-label {
  font-size: 0.68rem !important; letter-spacing: 0.14em;
  color: var(--mist) !important; width: 52px;
  background: rgba(0,0,0,0.2); position: sticky; left: 0; z-index: 1;
}
.bz-ganzhi { font-family: var(--font-cn); font-size: 1.45rem; font-weight: 500; }
.bz-muted { color: var(--mist); font-size: 0.8rem; }
.bz-hidden-item { display: flex; gap: 4px; justify-content: center; align-items: baseline; font-size: 0.75rem; }
.bz-hidden-item i { font-style: normal; color: var(--mist); font-size: 0.68rem; }
.bz-sha-wrap { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.bz-sha {
  font-size: 0.65rem; padding: 2px 6px; border-radius: 4px;
  border: 1px solid rgba(212,175,55,0.2); color: var(--gold-soft);
  white-space: nowrap;
}
.bz-sha.more { opacity: 0.5; border-style: dashed; }
.bz-section h4 {
  font-family: var(--font-cn); font-size: 0.95rem;
  color: var(--paper); letter-spacing: 0.08em; margin-bottom: 12px;
}
.wx-bars { display: grid; gap: 10px; }
.wx-row { display: grid; grid-template-columns: 28px 1fr 36px; gap: 10px; align-items: center; font-size: 0.82rem; }
.wx-track { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.06); overflow: hidden; }
.wx-fill { height: 100%; border-radius: 99px; transition: width 0.5s var(--ease); }
.wx-val { text-align: right; color: var(--mist); }
.bz-rel-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.bz-rel {
  font-size: 0.78rem; padding: 6px 10px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08); color: var(--fog);
  background: rgba(255,255,255,0.02);
}
.bz-raw {
  margin-top: 8px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.25);
}
.bz-raw summary { cursor: pointer; color: var(--gold-soft); font-size: 0.85rem; }
.bz-raw pre {
  margin-top: 12px; white-space: pre-wrap; font-size: 0.78rem;
  color: var(--mist); max-height: 360px; overflow: auto; line-height: 1.65;
}
.bz-foot { font-size: 0.72rem; color: var(--mist); opacity: 0.75; margin-top: 8px; }

/* Hexagram */
.hx-panel { display: grid; gap: 18px; }
.hx-head h3 {
  font-family: var(--font-cn); font-size: 1.25rem; color: var(--paper);
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.hx-head p { font-size: 0.9rem; color: var(--mist); }
.hx-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px;
}
.hx-card {
  border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius);
  padding: 16px 18px; background: rgba(14,16,24,0.9);
}
.hx-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.hx-label { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--mist); text-transform: uppercase; }
.hx-card-head strong { font-family: var(--font-cn); color: var(--paper); font-size: 1.1rem; }
.hx-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: center; }
.hx-row { display: flex; align-items: center; gap: 8px; min-height: 22px; }
.hx-row-detail { gap: 6px; font-size: 0.72rem; }
.hx-pos { width: 16px; text-align: right; color: var(--mist); font-family: ui-monospace, monospace; font-size: 0.7rem; }
.hx-pos.on { color: var(--gold-soft); font-weight: 600; }
.hx-bars { flex: 1; display: flex; align-items: center; gap: 6px; min-width: 72px; }
.hx-line { display: block; height: 8px; border-radius: 2px; background: rgba(232,201,106,0.75); }
.hx-line.full { width: 100%; }
.hx-line.half { flex: 1; }
.hx-line.moving { background: #c45c4a; box-shadow: 0 0 10px rgba(196,92,74,0.45); }
.hx-gap { width: 10px; flex-shrink: 0; }
.hx-mov { width: 18px; font-size: 0.65rem; color: #e08070; }
.hx-info { font-size: 0.8rem; color: var(--mist); display: grid; gap: 8px; }
.hx-info div { display: flex; justify-content: space-between; gap: 8px; }
.hx-info b { color: var(--fog); font-weight: 500; }
.hx-ci { margin-top: 6px; font-size: 0.75rem; line-height: 1.5; color: var(--mist); }
.hx-meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.hx-meta-row .chip {
  font-size: 0.72rem; padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25); color: var(--gold-soft);
}
.hx-summary { font-size: 0.92rem; color: var(--fog); line-height: 1.75; }
.hx-summary.muted { color: var(--mist); font-size: 0.85rem; }
.hx-section h4 {
  font-family: var(--font-cn); color: var(--paper); margin-bottom: 8px; font-size: 0.95rem;
}
.hx-liuyao-board {
  padding: 16px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.25);
}
.hx-meta { color: var(--mist); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hx-meta.left { width: 36px; }
.hx-meta.mid { width: 56px; text-align: right; }
.hx-meta.right { width: 48px; }

@media (max-width: 640px) {
  .hx-card-body { grid-template-columns: 1fr; }
  .bz-daymaster { flex-direction: column; text-align: center; }
}
