/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #fbf5ea;
  color: #3a2f2a;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input { border: none; outline: none; font: inherit; color: inherit; background: none; }
ul { list-style: none; }

/* ===== Top Nav ===== */
.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  height: 48px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 22px; }
.logo-text { font-size: 16px; font-weight: 700; color: #3a2f2a; letter-spacing: 1px; }
.nav-login {
  font-size: 13px; color: rgba(58, 47, 42, 0.6);
  padding: 6px 14px; border: 1px solid rgba(58, 47, 42, 0.08);
  border-radius: 20px;
}

/* ===== Tabs ===== */
.tabs-wrap {
  background: rgba(253, 251, 247, 0.85);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tabs-wrap::-webkit-scrollbar { display: none; }
.tabs-scroll {
  display: flex; gap: 0;
  max-width: 480px; margin: 0 auto;
  padding: 0 8px;
}
.tab-item {
  flex-shrink: 0;
  padding: 12px 14px;
  font-size: 16px; color: rgba(58, 47, 42, 0.45);
  white-space: nowrap;
  position: relative;
  transition: color 0.3s;
}
.tab-item.is-active {
  color: #3a2f2a;
  font-weight: 600;
}
.tab-item.is-active::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px;
  background: #7a3a1a;
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  height: 190px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay { text-align: center; position: relative; z-index: 1; }
.hero-title {
  font-size: 32px; font-weight: 800;
  color: #3a2f2a;
  letter-spacing: 6px;
}
.hero-sub {
  margin-top: 8px;
  font-size: 13px; color: rgba(58, 47, 42, 0.5);
  letter-spacing: 3px;
}

/* ===== Marquee ===== */
.pain-marquee {
  overflow: hidden;
  background: linear-gradient(rgba(255, 246, 224, 0.95), rgba(248, 239, 227, 0.95));
  padding: 14px 0;
}
.pain-marquee-track {
  display: flex; gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pain-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; color: #7a3a1a;
  white-space: nowrap;
}
.pain-dot {
  width: 4px; height: 4px;
  background: #c8954b; border-radius: 50%;
  display: inline-block;
}

/* ===== Trust Badges ===== */
.trust-badges {
  display: flex; justify-content: center; gap: 20px;
  padding: 16px 16px 4px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: #5a2c0f;
}
.trust-icon { width: 16px; height: 16px; stroke: #c8954b; }

/* ===== Page Container ===== */
.page-container {
  max-width: 960px; margin: 0 auto;
  padding: 16px 16px 32px;
}

/* ===== Form Page ===== */
.form-page {
  background: #f6e3c5;
}

/* ===== Form Section ===== */
.form-section { padding: 0; }
.form-card {
  background: #f8efe3;
  border-radius: 16px;
  padding: 4px 0;
}
.form-row {
  display: flex; align-items: center; gap: 12px;
  padding: 0 20px;
  height: 56px;
}
.form-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: #3a2f2a;
  white-space: nowrap;
  min-width: 72px;
}
.label-icon { width: 18px; height: 18px; stroke: rgba(58, 47, 42, 0.4); }
.form-control { flex: 1; }
.form-control--name-gender {
  display: flex; align-items: center; gap: 12px;
}
.form-input {
  flex: 1;
  padding: 0;
  font-size: 20px;
  color: #3a2f2a;
}
.form-input::placeholder { color: #c5b6a6; }
.gender-group { display: flex; gap: 8px; }
.gender-btn {
  width: 56px; height: 48px;
  border-radius: 999px;
  font-size: 17px;
  border: 1px solid #e0d0c0;
  color: #8c7a6b;
  background: transparent;
  transition: all 0.3s;
}
.gender-btn.is-selected {
  background: rgba(212, 168, 90, 0.18);
  color: #7a3a1a;
  border-color: #c8954b;
}
.form-divider {
  height: 1px;
  background: #e8d8c4;
  margin: 0;
}
.picker-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  height: 30px;
}
.picker-left { display: flex; align-items: center; }
.picker-placeholder { color: #c5b6a6; font-size: 15px; }
.picker-value { color: #3a2f2a; font-size: 15px; }
.picker-detail { font-size: 12px; color: rgba(58, 47, 42, 0.4); margin-left: 8px; }
.picker-arrow { color: #c5b6a6; }

/* ===== Social Proof ===== */
.social-proof {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 20px;
  font-size: 15px; color: #5a3a20;
}
.social-proof-dot {
  width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.social-proof-num { color: #c8262c; font-weight: 600; }

/* ===== CTA ===== */
.cta-wrap { margin-top: 0; }
.cta-btn {
  width: 100%;
  padding: 0 24px;
  height: 84px;
  background: linear-gradient(to bottom, #d6362b, #b22020);
  border-radius: 999px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: inset 0 0 0 2px #ffd58a, 0 4px 14px rgba(178, 30, 30, 0.4), inset 0 2px 0 #ffdca0;
  transition: all 0.3s;
}
.cta-btn:active { transform: scale(0.98); opacity: 0.9; }
.cta-main { font-size: 26px; font-weight: 700; color: #fff6e0; }
.cta-sub { font-size: 13px; color: rgba(255, 246, 224, 0.7); }

/* ===== Privacy ===== */
.privacy-hint {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px;
  font-size: 13px; color: #a99784;
}
.privacy-icon { width: 14px; height: 14px; stroke: #a99784; }

/* ===== Oracle Section ===== */
.oracle-section {
  padding: 18px 8px 8px;
  text-align: center;
}
.oracle-header {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 12px;
}
.oracle-header-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 110, 40, 0.3), transparent);
}
.oracle-header-text {
  font-size: 13px; color: rgba(176, 110, 40, 0.6);
  letter-spacing: 2.86px;
}
.oracle-stage {
  position: relative;
  width: 240px; height: 240px;
  margin: 0 auto;
}
.oracle-halo {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(176, 110, 40, 0.1);
  animation: halo-pulse 4s ease-in-out infinite;
}
.oracle-halo--outer {
  inset: -40px;
  border-color: rgba(176, 110, 40, 0.05);
  animation-delay: 1s;
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
.oracle-bagua {
  position: absolute; inset: 0;
  animation: bagua-rotate 60s linear infinite;
}
@keyframes bagua-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.oracle-bagua-glyph {
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  font-size: 20px;
  color: rgba(176, 110, 40, 0.55);
  display: flex; align-items: center; justify-content: center;
}
.oracle-taiji {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  animation: taiji-spin 20s linear infinite;
}
@keyframes taiji-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.oracle-chapters {
  position: absolute; inset: 0;
}
.oracle-chapter {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
}
.oracle-chapter-thread {
  position: absolute;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(176, 110, 40, 0.2), transparent);
  transform-origin: top center;
  transform: rotate(var(--ang));
  left: 0; top: 0;
}
.oracle-chapter-anchor {
  position: absolute;
  transform: rotate(var(--ang)) translateY(-90px) rotate(var(--ang-neg));
  display: flex; align-items: center; justify-content: center;
}
.oracle-chapter-card {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  cursor: pointer;
  transition: transform 0.3s;
}
.oracle-chapter-card:hover { transform: scale(1.1); }
.oracle-chapter-zhi {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(248, 239, 227, 0.9);
  border: 1px solid rgba(176, 110, 40, 0.2);
  font-size: 13px; font-style: normal;
  color: #6b1a05;
}
.oracle-chapter-text {
  font-size: 11px; color: rgba(58, 47, 42, 0.5);
  white-space: nowrap;
}
.oracle-foot {
  margin-top: 24px;
  font-size: 12px; color: rgba(176, 110, 40, 0.4);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.oracle-foot-dot {
  width: 4px; height: 4px;
  background: rgba(176, 110, 40, 0.3);
  border-radius: 50%;
  display: inline-block;
}

/* ===== Feature Section ===== */
.feature-section { padding: 20px 0 40px; }
.section-heading {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.section-heading-deco {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 47, 42, 0.15));
}
.section-heading-deco--right {
  background: linear-gradient(90deg, rgba(58, 47, 42, 0.15), transparent);
}
.section-heading-text {
  font-size: 18px; color: #3a2f2a;
  font-weight: 600;
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.feature-card {
  background: #f8efe3;
  border: 1px solid #e8d8c4;
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: rgba(212, 168, 90, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; stroke: #c8954b; fill: none; }
.feature-card-title { font-size: 17px; font-weight: 600; color: #3a2f2a; }
.feature-card-desc { font-size: 14px; color: #8c7a6b; line-height: 1.5; }

/* ===== Float Button ===== */
.cs-float-btn {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 90;
  width: 48px; height: 48px;
  background: #f8efe3;
  border: 1px solid #e8d8c4;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cs-icon { width: 20px; height: 20px; stroke: #7a3a1a; fill: none; }
.cs-text { font-size: 10px; color: #7a3a1a; }

/* ===== Footer ===== */
.page-footer {
  max-width: 100%; margin: 0 auto;
  padding: 32px 16px;
  text-align: center;
  background: #f6e3c5;
}
.disclaimer-text {
  font-size: 10px; color: #c5b6a6;
  margin-bottom: 16px;
}
.legal-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  font-size: 10px; color: rgba(58, 47, 42, 0.35);
}
.legal-link-narrow { cursor: pointer; }
.legal-link-narrow:hover { color: rgba(58, 47, 42, 0.6); }

/* ===== Date Picker Modal ===== */
.picker-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.picker-overlay.is-open { display: flex; }
.picker-modal {
  width: 100%; max-width: 480px;
  background: #fffcf7;
  border-radius: 16px 16px 0 0;
  animation: slide-up 0.3s ease-out;
}
@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.picker-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(58, 47, 42, 0.08);
}
.picker-cancel {
  font-size: 15px; color: rgba(58, 47, 42, 0.5);
}
.picker-type-group { display: flex; gap: 8px; }
.picker-type-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(58, 47, 42, 0.5);
  border: 1px solid rgba(58, 47, 42, 0.12);
  transition: all 0.3s;
}
.picker-type-btn.is-active {
  background: rgba(122, 58, 26, 0.08);
  color: #7a3a1a;
  border-color: rgba(122, 58, 26, 0.3);
}
.picker-confirm {
  font-size: 15px; color: #7a3a1a; font-weight: 600;
}
.picker-conversion {
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  color: #8c7a6b;
  border-bottom: 1px solid rgba(58, 47, 42, 0.06);
}
.picker-columns {
  display: flex;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.picker-columns::before,
.picker-columns::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.picker-columns::before {
  top: 0;
  background: linear-gradient(to bottom, #fffcf7, transparent);
}
.picker-columns::after {
  bottom: 0;
  background: linear-gradient(to top, #fffcf7, transparent);
}
.picker-column {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.picker-column::-webkit-scrollbar { display: none; }
.picker-column-inner {
  padding: 80px 0;
}
.picker-item {
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(58, 47, 42, 0.4);
  transition: all 0.2s;
  cursor: pointer;
}
.picker-item.is-selected {
  color: #3a2f2a;
  font-weight: 600;
  font-size: 17px;
}
.picker-item.is-nearby {
  color: rgba(58, 47, 42, 0.6);
}

/* ===== Loading Overlay ===== */
.loading-overlay {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(251, 245, 234, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
}
.loading-taiji {
  width: 80px; height: 80px;
  animation: taiji-spin 2s linear infinite;
}
.loading-text {
  font-size: 16px; color: #7a3a1a;
  letter-spacing: 4px;
}
.loading-progress {
  width: 200px; height: 3px;
  background: rgba(58, 47, 42, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c8954b, #d4a853);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}

/* ===== Paipan Result Page ===== */
.paipan-result {
  position: relative;
  background: #f6e3c5;
  min-height: 100vh;
}

/* ===== Top Decoration ===== */
.top-deco {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 560px;
  overflow: visible;
  pointer-events: none;
}
.top-deco-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.top-deco-glow-1 {
  width: 520px; height: 520px;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 168, 90, 0.22) 0%, transparent 70%);
  filter: none;
}
.top-deco-glow-2 {
  width: 300px; height: 300px;
  top: -100px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 168, 90, 0.15) 0%, transparent 70%);
}
.top-deco-logo-wrap {
  position: absolute;
  top: 60px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.top-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 90, 0.15);
}
.top-deco-ring--xl { width: 228px; height: 228px; border-color: rgba(212, 168, 90, 0.08); }
.top-deco-ring--lg { width: 96px; height: 96px; }
.top-deco-ring--md { width: 72px; height: 72px; }
.top-deco-ring--sm { width: 48px; height: 48px; }
.top-deco-logo {
  width: 72px; height: 72px;
  color: #c28d4b;
  z-index: 1;
}
.top-deco-xingzuo {
  position: absolute;
  top: 20px;
  right: -20px;
  font-size: 200px;
  color: rgba(212, 168, 90, 0.06);
  font-weight: 300;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ===== Container ===== */
.container {
  position: relative;
  max-width: 800px; margin: 0 auto;
  padding: 80px 40px 32px;
}

/* ===== Profile Summary ===== */
.profile-summary {
  padding: 8px 0 24px;
}
.profile-name {
  font-size: 28px; font-weight: 600; color: #3a2f2a;
  margin-bottom: 8px;
}
.ming-info-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.gender-icon {
  font-size: 16px; font-weight: 700;
}
.gender-male { color: #3b82f6; }
.gender-female { color: #ec4899; }
.birth-date-text {
  font-size: 15px; color: #83808b;
}
.lunar-tag {
  font-size: 12px; color: #83808b;
  padding: 2px 7px;
  background: rgba(212, 168, 90, 0);
  border-radius: 20px;
}
.profile-desc {
  font-size: 15px; color: #8c7a6b;
  line-height: 27px;
  margin-bottom: 16px;
}
.profile-keyword {
  color: #a06d3b;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.kw-underline {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 10px;
  width: 100%;
}
.signal-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(214, 54, 43, 0.06), rgba(212, 168, 90, 0.08));
  border: 1px solid rgba(214, 54, 43, 0.25);
  border-radius: 999px;
}
.signal-dot {
  width: 7px; height: 7px;
  background: #d6362b;
  border-radius: 50%;
  flex-shrink: 0;
}
.signal-text {
  font-size: 14px; color: #6b4a36;
}
.signal-num {
  font-size: 18px; font-weight: 700; color: #d6362b;
}
.signal-key {
  font-size: 14px; font-weight: 600; color: #a06d3b;
}

/* ===== Section Title ===== */
.section-title {
  font-size: 16px; font-weight: 600;
  color: #a06d3b;
  margin: 24px 0 12px;
}

/* ===== BaZi Table ===== */
.bazi-table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.bazi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.bazi-table .col-label { width: 50px; }
.bazi-table th, .bazi-table td {
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e8e8e8;
}
.bazi-table th:first-child, .bazi-table td:first-child {
  border-left: none;
}
.bazi-table th:last-child, .bazi-table td:last-child {
  border-right: none;
}
.bazi-table thead tr th {
  border-top: none;
}
.bazi-table tbody tr:last-child td {
  border-bottom: none;
}
.cell-label {
  font-size: 13px; color: #8c7a6b;
  text-align: left !important;
  background: #f8f8f8;
}
.cell-pillar {
  font-size: 13px; color: #8c7a6b;
  background: #f8f8f8;
}
.row-shishen .cell-data,
.row-tiangan .cell-data,
.row-dizhi .cell-data,
.row-canggan .cell-data,
.row-nayin .cell-data {
  background: #fff;
}
.tag-shishen {
  display: inline-block;
  padding: 2px 7px;
  background: #f0f0f0;
  border-radius: 8px;
  font-size: 12px; color: #666;
}
.tag-daymaster {
  display: inline-block;
  padding: 2px 7px;
  background: #f0f0f0;
  border-radius: 8px;
  font-size: 12px; color: #3a2f2a;
  font-weight: 700;
}
.char-tg, .char-dz {
  font-size: 20px; font-weight: 700;
}
.wx-wood { color: #22c55e; }
.wx-fire { color: #ef4444; }
.wx-earth { color: #c28d4b; }
.wx-metal { color: #d4a853; }
.wx-water { color: #3b82f6; }
.canggan-row {
  display: flex; gap: 4px; justify-content: center;
}
.cg-char {
  font-size: 13px;
}
.nayin-text {
  font-size: 12px; color: #8c7a6b;
}
.bazi-text {
  font-size: 14px; font-weight: 600; color: #3a2f2a;
}
.wuxing-text {
  font-size: 13px; font-weight: 500;
}
.bazi-unlock-hint {
  text-align: center;
  font-size: 12px; color: #a99784;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* ===== Preview Sections ===== */
.preview-section {
  background: #f8efe3;
  border: 1px solid #e8d8c4;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.preview-section-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 12px;
}
.preview-section-badge {
  font-size: 28px;
  font-weight: 700;
  color: #c28d4b;
  line-height: 1;
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transform: none;
  flex-shrink: 0;
  min-width: 40px;
  text-align: center;
}
.preview-section-title {
  font-size: 18px; font-weight: 600;
  color: #3a2f2a;
  margin-bottom: 4px;
}
.preview-section-subtitle {
  font-size: 14px; color: #c5b6a6;
}
.preview-section-subtitle em {
  font-style: normal; color: #d6362b; font-weight: 600;
}
.preview-section-desc {
  font-size: 15px; color: #8c7a6b;
  line-height: 23.8px;
  margin-bottom: 16px;
}
.preview-section-desc .fortune-highlight {
  color: #8c7a6b;
  font-weight: 600;
}
.preview-section-desc .fortune-keyword {
  color: #a06d3b;
  font-weight: 600;
}
.preview-blur-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-bottom: 16px;
}
.preview-blur-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: blur(6px);
  opacity: 0.6;
}
.preview-blur-inner {
  display: flex; gap: 16px;
  height: 100%;
  padding: 12px;
}
.preview-blur-col {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  padding: 8px 0;
  min-width: 0;
}
.blur-block {
  background: #d4c8b8;
  border-radius: 4px;
  flex-shrink: 0;
}
.blur-block--title {
  width: 60%; height: 14px;
}
.blur-block--line {
  width: 90%; height: 10px;
}
.blur-block--line-short {
  width: 70%; height: 10px;
}
.blur-block--chart {
  width: 100%; height: 80px;
  border-radius: 8px;
}
.preview-radar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.preview-radar-circle {
  width: 140px; height: 140px;
  border: 1px solid rgba(212, 168, 90, 0.3);
  border-radius: 50%;
}
.preview-radar-labels {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: space-around;
}
.radar-label-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.rl-name {
  font-size: 16px; color: #3a2f2a;
}
.rl-val {
  font-size: 16px; color: #3a2f2a; font-weight: 400;
}
.preview-unlock-btn {
  display: block;
  margin: 0 auto;
  padding: 10px 22px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* ===== Unlock CTA ===== */
.unlock-cta-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 24px auto 12px;
  padding: 0;
  height: 56px;
  background: linear-gradient(to bottom, #d6362b, #b22020);
  border-radius: 999px;
  font-size: 16px; font-weight: 700;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(178, 30, 30, 0.3);
}
.unlock-price {
  font-size: 13px; font-weight: 400;
  margin-left: 4px;
}
.unlock-original {
  text-decoration: line-through;
  opacity: 0.6;
  margin-left: 4px;
}
.unlock-member-hint {
  text-align: center;
  font-size: 13px; color: #8c7a6b;
  margin-bottom: 24px;
}

/* ===== Pay Modal ===== */
.pay-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.pay-modal-overlay.is-open {
  display: flex;
}
.pay-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  position: relative;
  animation: modal-in 0.3s ease-out;
}
@keyframes modal-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.pay-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  font-size: 14px;
  color: #999;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.pay-modal-header {
  background: linear-gradient(135deg, #fdf6ed, #f8e8d0);
  padding: 28px 24px 20px;
  text-align: center;
}
.pay-modal-title {
  font-size: 20px; font-weight: 700; color: #3a2f2a;
  margin-bottom: 6px;
}
.pay-modal-subtitle {
  font-size: 13px; color: #8c7a6b;
}
.pay-modal-body {
  padding: 20px 24px 28px;
}
.pay-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px;
  background: #faf6f0;
  border-radius: 12px;
  margin-bottom: 16px;
}
.pay-item-name {
  font-size: 16px; font-weight: 600; color: #3a2f2a;
  display: block;
}
.pay-item-desc {
  font-size: 12px; color: #8c7a6b;
  margin-top: 2px;
  display: block;
}
.pay-item-price {
  text-align: right;
}
.pay-price-current {
  font-size: 28px; font-weight: 700; color: #d6362b;
}
.pay-price-original {
  font-size: 14px; color: #999;
  text-decoration: line-through;
  margin-left: 4px;
}
.pay-benefits {
  margin-bottom: 20px;
}
.pay-benefit-item {
  font-size: 14px; color: #5a4a3a;
  padding: 6px 0;
}
.pay-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to bottom, #d6362b, #b22020);
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(178, 30, 30, 0.3);
}
.pay-btn-text {
  display: block;
  font-size: 18px; font-weight: 700; color: #fff;
}
.pay-btn-sub {
  display: block;
  font-size: 12px; color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.pay-hint {
  text-align: center;
  font-size: 12px; color: #999;
  margin-top: 12px;
}

/* ===== Member Benefits ===== */
.member-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 24px;
}
.benefit-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 40px;
  display: flex; flex-direction: column; gap: 4px;
}
.benefit-item svg {
  width: 24px; height: 24px;
  stroke: #c28d4b; fill: none;
  margin-bottom: 4px;
}
.benefit-item span:first-of-type {
  font-size: 14px; font-weight: 600; color: #3a2f2a;
}
.benefit-desc {
  font-size: 12px; color: #8c7a6b;
  line-height: 1.4;
}


