/* ---- Design tokens (matched to the PDF report palette) ---- */
:root {
  --beige-light: #f1ecc5;
  --beige-warm:  #e5ccb0;
  --ink:         #2a2a2a;
  --ink-soft:    #5a5a5a;
  --line:        #d8c8a8;
  --accent:      #8a6a3b;
  --accent-dark: #6a4f2a;
  --danger:      #b03a2e;
  --radius:      14px;
  --shadow:      0 6px 18px rgba(60, 40, 10, 0.08);
  --shadow-lg:   0 12px 32px rgba(60, 40, 10, 0.14);
  --font-sans:   -apple-system, BlinkMacSystemFont, "Segoe UI",
                 "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
                 "Helvetica Neue", Arial, sans-serif;
  --font-serif:  "STHeiti", "Songti SC", "Source Han Serif SC",
                 "Noto Serif CJK SC", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse at top, var(--beige-light) 0%, var(--beige-warm) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  min-height: calc(100vh - 112px); /* 100vh minus .page top+bottom padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 32px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 253, 246, 0.7);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
}
.hero-subtitle {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}
.hero-intro {
  margin: 0 auto 28px;
  max-width: 620px;
  color: var(--accent-dark);
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* Benefit cards grid */
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto 28px;
  max-width: 760px;
}
.benefit-card {
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 14px 16px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  display: block;
  font-size: 40px;
  margin-bottom: 8px;
  line-height: 1;
}
.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
}
.benefit-card p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Hero CTA button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.05s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(138, 106, 59, 0.25);
}
.hero-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 18px rgba(138, 106, 59, 0.35);
}
.hero-cta:active { transform: translateY(1px); }
.hero-cta-arrow {
  font-size: 16px;
  animation: bounce-down 1.4s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ---- Cards ---- */
.card {
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}

/* ---- Form ---- */
.form-card { padding: 32px; }

/* Segmented report-type selector */
.segmented {
  display: flex;
  background: #f6efdb;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
}
.segmented-option {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.segmented-option:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}
.segmented-option.active {
  background: #fffdf6;
  color: var(--accent-dark);
  box-shadow: 0 1px 3px rgba(60, 40, 10, 0.12);
}
.badge-soon {
  display: inline-block;
  background: var(--beige-warm);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.4;
}

/* Short description below the report-type selector. */
.report-description {
  margin: -12px 0 22px;
  padding: 0 4px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  min-height: 1.65em; /* prevent layout shift when descriptions swap */
}

.form-section + .form-section { margin-top: 8px; }
.form-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.field {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
}

.payment-method-selector {
  border: 0;
  padding: 0;
  margin: 8px 0 22px;
}
.payment-method-selector legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.payment-method-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.payment-method-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf6;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.payment-method-option:has(input:checked) {
  border-color: var(--accent);
  background: #fbf4e5;
  box-shadow: 0 0 0 2px rgba(125, 87, 52, 0.12);
}
.payment-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-method-option:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.payment-method-option > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}
.payment-method-option strong { color: var(--ink); font-size: 14px; }
.payment-method-option small { color: var(--ink-soft); font-size: 11px; }
.payment-method-mark {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-weight: 700;
}
.alipay-mark { background: #1677ff; }
.wechat-mark { background: #07c160; }
.field label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.field input {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 106, 59, 0.15);
}
/* Hide spinner buttons on number inputs (cleaner look) */
.field input::-webkit-outer-spin-button,
.field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field input[type="number"] {
  -moz-appearance: textfield;
}

.primary-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.05s;
}
.primary-btn:hover:not(:disabled) {
  background: var(--accent-dark);
}
.primary-btn:active:not(:disabled) { transform: translateY(1px); }
.primary-btn:disabled {
  background: #b9a684;
  cursor: not-allowed;
}

/* Textarea for the relationship "situation" field */
textarea {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  width: 100%;
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 106, 59, 0.15);
}

.error {
  color: var(--danger);
  font-size: 14px;
  margin-top: 12px;
  min-height: 1.2em;
}

/* Result note banner (used for the relationship placeholder message) */
.result-note {
  background: #fdf3da;
  border: 1px solid #e8c97a;
  border-left: 4px solid var(--accent);
  color: #6a4f2a;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  white-space: pre-line;
}

/* ---- Loading popup overlay ---- */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 42, 42, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.loading-overlay[hidden] { display: none; }

.loading-popup {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 32px;
  font-size: 15px;
  color: var(--ink);
  animation: pop-in 0.2s ease-out;
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Result ---- */
.result-card { padding: 20px; }
.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0 8px;
}
.result-header h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0;
  color: var(--accent-dark);
}
.result-actions { display: flex; gap: 8px; }

.ghost-btn {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.ghost-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* PDF stage: holds the iframe + an overlay (paywall) on top of it. */
.pdf-stage {
  position: relative;
  width: 100%;
  margin: 0 0 12px;
}

#pdfFrame {
  width: 100%;
  height: 820px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f1e3;
}

/* Page-count banner: sits above the iframe, below the header. */
.page-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin: 12px 0 14px;
  background: #fdf3da;
  border: 1px solid #e2c98a;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
}
.page-banner-text strong {
  color: var(--accent-dark);
  font-weight: 700;
}
.page-banner-sep {
  color: var(--ink-soft);
  opacity: 0.6;
}
.page-banner-status {
  color: var(--ink-soft);
}

/* Paywall overlay: covers the bottom 40% of the iframe with a soft fade. */
.paywall {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 28px;
  background: linear-gradient(
    to bottom,
    rgba(246, 241, 227, 0) 0%,
    rgba(246, 241, 227, 0.85) 35%,
    rgba(246, 241, 227, 0.98) 100%
  );
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  pointer-events: auto;
  z-index: 2;
}
.paywall-inner {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 6px 24px rgba(70, 50, 20, 0.10);
  text-align: center;
  max-width: 460px;
  width: 100%;
}
.paywall-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  text-transform: uppercase;
}
.paywall-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.paywall-title span {
  color: var(--accent-dark);
}
.paywall-help {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.paywall-help strong {
  color: var(--accent-dark);
}
.paywall .primary-btn {
  width: auto;
  min-width: 200px;
}
.hint {
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
  margin: 10px 0 0;
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 24px;
}
.footer p { margin: 0; }

/* ---- Payment screen ---- */
.payment-card { text-align: center; padding: 32px 24px; }
.payment-card h2 {
  font-family: var(--font-serif);
  color: var(--accent-dark);
  margin: 0 0 8px;
  font-size: 22px;
}
.payment-amount {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0 12px;
  letter-spacing: 0.02em;
}
.payment-hint {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 auto 18px;
  max-width: 460px;
  line-height: 1.6;
}
.payment-qr-wrap {
  display: flex;
  justify-content: center;
  margin: 16px auto 20px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: max-content;
}
.payment-qr-wrap img {
  display: block;
  width: 240px;
  height: 240px;
}
.payment-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.payment-status {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 12px 0 4px;
}

@media (max-width: 520px) {
  .payment-method-options { grid-template-columns: 1fr; }
}
.dev-override {
  background: #fdf3da;
  border: 1px dashed #c9a05a;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 18px auto;
  max-width: 460px;
  text-align: left;
}
.dev-override-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.dev-override-help {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 10px;
}
.link-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  padding: 4px 8px;
}
.link-btn:hover { color: var(--accent-dark); }

/* ---- Payment status page ---- */
.status-card {
  text-align: center;
  padding: 32px 28px;
}
.status-card h2 {
  font-family: var(--font-serif);
  color: var(--accent-dark);
  margin: 12px 0 8px;
}
.status-message {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 auto 16px;
  max-width: 480px;
}
.status-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.poll-status {
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 10px;
}

/* ---- Marketing section (dark banner, full-bleed) ---- */
.marketing {
  background: #4a3520;
  padding: 56px 24px 48px;
  width: 100%;
}
.marketing-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.marketing-item {
  flex: 1;
  padding: 0 24px;
  text-align: center;
}
.marketing-icon {
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.marketing-item h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #f1ecc5;
  letter-spacing: 0.04em;
}
.marketing-desc {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(241, 236, 197, 0.82);
}
.marketing-points {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.marketing-points li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(241, 236, 197, 0.9);
  padding: 5px 0 5px 22px;
  position: relative;
}
.marketing-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 5px;
  color: #d8c8a8;
  font-size: 14px;
}
.marketing-divider {
  width: 1px;
  background: rgba(216, 200, 168, 0.25);
  flex-shrink: 0;
}
.marketing-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.marketing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 40px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.05s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(138, 106, 59, 0.35);
}
.marketing-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(138, 106, 59, 0.45);
}
.marketing-cta:active { transform: translateY(1px); }

/* Extra spacing between the full-bleed marketing banner and the form */
.marketing + .page { padding-top: 72px; }

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .page { padding: 28px 16px 40px; }
  .hero { min-height: auto; padding: 48px 0 32px; }
  .hero h1 { font-size: 28px; }
  .hero-intro { font-size: 13px; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 22px; }
  #pdfFrame { height: 640px; }
  .marketing { padding: 40px 16px 32px; }
  .marketing-inner { flex-direction: column; gap: 28px; }
  .marketing-divider { width: 100%; height: 1px; }
  .marketing-item { padding: 0; }
  .marketing-item h2 { font-size: 22px; }
  .marketing-desc { font-size: 15px; }
  .marketing-points li { font-size: 14px; }
  .marketing-cta { font-size: 15px; padding: 13px 32px; }
}

/* ========================================================================
   Complete site redesign — editorial landing page wrapped around the
   existing report generator. Legacy generator selectors above are retained
   so payment, PDF preview and form behaviour remain unchanged.
   ======================================================================== */
:root {
  --page-bg: #f6f1e9;
  --surface: #fffaf2;
  --surface-deep: #eee5d7;
  --plum: #6f4e37;
  --plum-dark: #3e2723;
  --rust: #9a6846;
  --gold: #be9870;
  --sage: #69766b;
  --site-ink: #2d2927;
  --site-muted: #736b65;
  --site-line: rgba(111, 78, 55, 0.16);
  --site-shadow: 0 24px 70px rgba(62, 39, 35, 0.10);
  --accent: var(--plum);
  --accent-dark: var(--plum-dark);
  --line: #dccfbd;
  --ink: var(--site-ink);
  --ink-soft: var(--site-muted);
}

html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(190, 152, 112, 0.12), transparent 28rem),
    var(--page-bg);
  color: var(--site-ink);
}

a { color: inherit; }
button, input, textarea { font: inherit; }

.site-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 233, 0.90);
  border-bottom: 1px solid rgba(111, 78, 55, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50% 50% 48% 52%;
  background: var(--plum);
  color: #fffaf2;
  font-family: var(--font-serif);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}

.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.08em; }
.brand-copy small { margin-top: 4px; color: var(--site-muted); font-size: 10px; letter-spacing: 0.22em; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: var(--site-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover,
.footer-links a:hover { color: var(--plum); }

.nav-cta {
  border: 1px solid var(--plum);
  border-radius: 999px;
  padding: 10px 19px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-cta:hover { background: var(--plum); color: #fff; }

.site-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 92px;
}
.site-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -260px;
  bottom: -320px;
  border: 1px solid rgba(111,78,55,0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(111,78,55,0.03), 0 0 0 140px rgba(111,78,55,0.02);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 60px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero-copy-block h1 {
  margin: 0;
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.035em;
}
.hero-copy-block h1 span { color: var(--rust); }

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--site-muted);
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-cta,
.marketing-cta {
  min-height: 50px;
  border-radius: 999px;
  background: var(--plum);
  padding: 13px 26px;
  box-shadow: 0 10px 28px rgba(111,78,55,0.22);
  letter-spacing: 0.03em;
}
.hero-cta:hover,
.marketing-cta:hover { background: var(--plum-dark); box-shadow: 0 12px 34px rgba(62,39,35,0.25); }

.text-link,
.product-link {
  color: var(--plum);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(111,78,55,0.38);
  padding-bottom: 4px;
}

.hero-notes { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 30px; }
.hero-notes span { position: relative; color: var(--site-muted); font-size: 12px; }
.hero-notes span:not(:last-child)::after { content: "·"; position: absolute; right: -13px; color: var(--gold); }

.hero-orbit {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111,78,55,0.25);
  border-radius: 50%;
  background: rgba(255,250,242,0.58);
  box-shadow: inset 0 0 0 28px rgba(255,255,255,0.28), var(--site-shadow);
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(190,152,112,0.35);
  border-radius: 50%;
  inset: 28px;
}
.hero-orbit::after { inset: 62px; border-style: dashed; }

.orbit-caption {
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  text-align: center;
  white-space: nowrap;
}
.orbit-caption span { color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: 0.24em; }
.orbit-caption strong { margin-top: 4px; color: var(--plum-dark); font-family: var(--font-serif); font-size: 16px; letter-spacing: 0.2em; }

.number-board {
  position: relative;
  z-index: 1;
  width: 198px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.number-board b {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111,78,55,0.17);
  border-radius: 50%;
  background: var(--surface);
  color: var(--plum-dark);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  box-shadow: 0 5px 16px rgba(62,39,35,0.08);
}
.number-board .number-node { background: var(--plum); color: #fff; border-color: var(--plum); }
.number-board .node-five { background: var(--rust); border-color: var(--rust); }
.number-board .node-nine { box-shadow: 0 0 0 5px rgba(190,152,112,0.22); }
.board-line { position: absolute; z-index: 0; background: rgba(190,152,112,0.56); transform-origin: left center; }
.line-h { width: 156px; height: 1px; left: 22px; }
.line-h-one { top: 26px; }
.line-h-two { bottom: 26px; }
.line-v { width: 1px; height: 156px; top: 22px; }
.line-v-one { left: 26px; }
.line-v-two { right: 26px; }
.line-d { width: 220px; height: 1px; left: 20px; top: 20px; }
.line-d-one { transform: rotate(45deg); }
.line-d-two { left: 177px; transform: rotate(135deg); }

.orbit-meta {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.orbit-meta span { color: var(--site-muted); font-size: 9px; letter-spacing: 0.1em; }
.orbit-meta strong { color: var(--rust); font-family: Georgia, serif; font-size: 22px; }

.site-section { padding: 118px 0; }
.section-heading h2,
.author-copy h2,
.faq-intro h2,
.generator-heading h2 {
  margin: 0;
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.24;
}
.section-heading > p:last-child,
.faq-intro > p:last-child,
.generator-heading > p:last-child { color: var(--site-muted); line-height: 1.8; }
.split-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.split-heading > p { margin: 0; max-width: 410px; }
.centered-heading { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.centered-heading > p:last-child { margin: 18px auto 0; max-width: 580px; }

.author-section { background: var(--plum-dark); color: #f8efe5; }
.author-feature { display: grid; grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr); gap: 92px; align-items: start; }
.author-profile-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 38px;
  overflow: hidden;
  border: 1px solid rgba(255,250,242,0.22);
  border-radius: 180px 180px 18px 18px;
  background: linear-gradient(155deg, rgba(255,255,255,0.11), rgba(190,152,112,0.14));
  text-align: center;
}
.author-profile-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -120px; bottom: -150px; border: 1px solid rgba(255,255,255,0.14); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,0.025); }
.author-profile-card .section-kicker { position: relative; z-index: 1; color: #d8bc90; }
.author-book-cover {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 240px);
  max-height: 335px;
  margin: 10px 0 28px;
  border-radius: 5px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,0.28));
}
.author-monogram {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  margin: 14px 0 30px;
  border: 1px solid rgba(216,188,144,0.52);
  border-radius: 50%;
  color: #fffaf2;
  font-family: var(--font-serif);
  font-size: 82px;
}
.author-monogram::after { content: ""; position: absolute; inset: 13px; border: 1px dashed rgba(216,188,144,0.35); border-radius: 50%; }
.author-role { position: relative; z-index: 1; margin: 0; color: #ead6b6; font-size: 13px; letter-spacing: 0.10em; }
.author-profile-note { position: relative; z-index: 1; max-width: 310px; margin: 18px 0 0; color: rgba(255,250,242,0.55); font-size: 12px; line-height: 1.8; }
.author-copy h2 { margin-bottom: 30px; color: #fffaf2; }
.author-copy > p:not(.author-note) { max-width: 720px; margin: 0 0 16px; color: rgba(255,250,242,0.76); font-size: 16px; line-height: 1.95; }
.author-method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 34px; }
.author-method-grid article { padding: 24px 20px; border: 1px solid rgba(255,250,242,0.15); background: rgba(255,255,255,0.045); }
.author-method-grid span { color: #d8bc90; font-family: Georgia, serif; font-size: 11px; }
.author-method-grid h3 { margin: 14px 0 9px; color: #fffaf2; font-family: var(--font-serif); font-size: 18px; font-weight: 600; }
.author-method-grid p { margin: 0; color: rgba(255,250,242,0.56); font-size: 11px; line-height: 1.75; }
.author-note { margin: 24px 0 0; color: rgba(255,250,242,0.42); font-size: 11px; line-height: 1.7; }

.reports-section { background: #fbf7f0; }
.report-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.report-product { position: relative; min-height: 560px; display: flex; flex-direction: column; padding: 44px; border: 1px solid var(--site-line); border-radius: 3px 46px 3px 3px; overflow: hidden; }
.report-product::after { content: ""; position: absolute; right: -90px; top: -90px; width: 220px; height: 220px; border: 1px solid currentColor; border-radius: 50%; opacity: 0.10; box-shadow: 0 0 0 35px currentColor, 0 0 0 70px currentColor; }
.personal-product { background: #f0e7da; color: var(--plum-dark); }
.relationship-product { background: var(--plum); color: #fff7ec; }
.product-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid currentColor; }
.product-topline span { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; opacity: 0.7; }
.product-topline strong { font-family: Georgia, serif; font-size: 24px; }
.report-product h3 { margin: 42px 0 14px; font-family: var(--font-serif); font-size: 31px; font-weight: 600; }
.report-product > p { margin: 0; max-width: 430px; font-size: 15px; line-height: 1.8; opacity: 0.72; }
.report-product ul { display: grid; gap: 0; margin: 30px 0 36px; padding: 0; list-style: none; }
.report-product li { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid currentColor; font-size: 14px; border-color: rgba(111,78,55,0.13); }
.relationship-product li { border-color: rgba(255,255,255,0.13); }
.report-product li span { font-family: Georgia, serif; font-size: 11px; opacity: 0.55; }
.report-product .product-link { width: max-content; margin-top: auto; }
.relationship-product .product-link { color: #fff8ef; border-color: rgba(255,255,255,0.40); }
.marketing-cta-wrap { margin-top: 42px; }

.examples-section { background: var(--page-bg); }
.example-row { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr); gap: 96px; align-items: center; margin-top: 90px; }
.example-row:first-of-type { margin-top: 0; }
.example-row.reverse-row { grid-template-columns: minmax(420px, 1.18fr) minmax(0, 0.82fr); }
.reverse-row .example-copy { order: 2; grid-column: 2; }
.reverse-row .report-paper, .reverse-row .example-pdf-shell { order: 1; grid-column: 1; }
.example-number { margin: 0 0 18px; color: var(--rust); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; }
.example-copy h3 { margin: 0 0 20px; color: var(--plum-dark); font-family: var(--font-serif); font-size: 32px; font-weight: 600; line-height: 1.35; }
.example-copy > p:not(.example-number) { color: var(--site-muted); font-size: 15px; line-height: 1.9; }
.deliverable-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.deliverable-list span { padding: 8px 12px; border: 1px solid var(--site-line); border-radius: 999px; background: rgba(255,250,242,0.7); color: var(--plum); font-size: 11px; }

.report-paper { position: relative; min-height: 575px; padding: 44px 48px; background: #fffefa; border: 1px solid #e3d9cc; box-shadow: 0 28px 70px rgba(62,39,35,0.15); transform: rotate(1deg); overflow: hidden; }
.reverse-row .report-paper { transform: rotate(-1deg); }
.report-paper::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(111,78,55,0.12); pointer-events: none; }
.paper-header { position: relative; display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(111,78,55,0.18); }
.paper-header span { color: var(--plum); font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.08em; }
.paper-header small { color: var(--site-muted); font-size: 9px; letter-spacing: 0.15em; }
.paper-date { position: relative; margin: 24px 0; color: var(--site-muted); font-size: 10px; letter-spacing: 0.1em; text-align: center; }
.mini-board { position: relative; width: 225px; margin: 14px auto 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.mini-board::before, .mini-board::after { content: ""; position: absolute; inset: 12px 30px; border: 1px solid rgba(190,152,112,0.32); transform: rotate(45deg); }
.mini-board::after { transform: rotate(-45deg); }
.mini-board b { position: relative; z-index: 1; width: 50px; height: 50px; display: grid; place-items: center; justify-self: center; border: 1px solid rgba(111,78,55,0.20); border-radius: 50%; background: #fffefa; color: var(--plum); font-family: Georgia, serif; font-weight: 500; }
.mini-board .ring-one { background: var(--plum); color: #fff; }
.mini-board .ring-two { box-shadow: 0 0 0 3px rgba(154,104,70,0.22); }
.mini-board .ring-three { box-shadow: 0 0 0 3px rgba(190,152,112,0.20), 0 0 0 6px rgba(190,152,112,0.12); }
.paper-metrics { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(111,78,55,0.14); border-bottom: 1px solid rgba(111,78,55,0.14); }
.paper-metrics span { display: grid; padding: 16px 10px; color: var(--site-muted); font-size: 9px; text-align: center; border-right: 1px solid rgba(111,78,55,0.14); }
.paper-metrics span:last-child { border-right: 0; }
.paper-metrics strong { margin-top: 6px; color: var(--plum); font-family: var(--font-serif); font-size: 18px; }
.paper-lines { display: grid; gap: 9px; margin-top: 25px; }
.paper-lines i { display: block; height: 5px; border-radius: 5px; background: #ede6dd; }
.paper-lines i:nth-child(2) { width: 92%; }
.paper-lines i:nth-child(3) { width: 83%; }
.paper-lines i:nth-child(4) { width: 65%; }
.sample-stamp { position: absolute; right: 35px; bottom: 23px; color: rgba(154,104,70,0.55); font-size: 9px; font-weight: 800; letter-spacing: 0.18em; }

.relation-heads { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; margin: 34px 0 24px; color: var(--plum); font-size: 11px; text-align: center; }
.relation-heads em { color: var(--gold); font-family: Georgia, serif; font-size: 22px; font-style: normal; }
.relation-columns { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.relation-columns > div { padding: 18px; background: #f5eee5; }
.relation-columns strong, .advice-sample strong { color: var(--plum); font-family: var(--font-serif); font-size: 14px; }
.relation-columns p, .advice-sample p, .situation-sample p { margin: 9px 0 0; color: var(--site-muted); font-size: 11px; line-height: 1.7; }
.situation-sample, .advice-sample { position: relative; margin-top: 14px; padding: 16px 18px; border: 1px solid rgba(111,78,55,0.13); }
.situation-sample small { color: var(--rust); font-size: 9px; font-weight: 800; letter-spacing: 0.13em; }
.advice-sample { border-left: 3px solid var(--gold); background: rgba(190,152,112,0.08); }

.actual-report-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: 60px;
  align-items: start;
  margin-top: 118px;
  padding-top: 90px;
  border-top: 1px solid var(--site-line);
}
.actual-report-intro { position: sticky; top: 112px; align-self: start; }
.actual-report-intro .section-kicker { margin-bottom: 20px; }
.actual-report-intro h3 { margin: 0 0 20px; color: var(--plum-dark); font-family: var(--font-serif); font-size: 32px; font-weight: 600; line-height: 1.35; }
.actual-report-intro > p:not(.section-kicker):not(.example-number) { margin: 0; color: var(--site-muted); font-size: 14px; line-height: 1.9; }
.actual-report-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid rgba(111,78,55,0.4); color: var(--plum); font-size: 14px; font-weight: 700; text-decoration: none; }
.embedded-pdf-shell { overflow: hidden; border: 1px solid rgba(111,78,55,0.18); border-radius: 3px; background: #fffaf2; box-shadow: 0 30px 76px rgba(62,39,35,0.15); }
.embedded-pdf-bar { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px; border-bottom: 1px solid rgba(111,78,55,0.16); background: #fffaf2; color: var(--plum-dark); }
.embedded-pdf-bar span { font-family: var(--font-serif); font-size: 25px; font-weight: 600; line-height: 1.25; letter-spacing: 0.02em; }
.embedded-pdf-bar small { flex: 0 0 auto; color: var(--rust); font-size: 11px; font-weight: 800; letter-spacing: 0.09em; }
.sample-pdf-frame { display: block; width: 100%; height: 790px; border: 0; background: #fff; }
.example-pdf-shell { width: 100%; }
.example-pdf-shell .sample-pdf-frame { height: 650px; }
.embedded-pdf-open { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 58px; padding: 0 28px; border-top: 1px solid rgba(111,78,55,0.14); background: #f5ecdf; color: var(--plum); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; }
.embedded-pdf-open:hover { color: var(--plum-dark); background: #eee0cf; }

.process-section { padding-top: 42px; background: var(--page-bg); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--site-line); border-bottom: 1px solid var(--site-line); }
.process-grid > div { padding: 38px 34px; border-right: 1px solid var(--site-line); }
.process-grid > div:last-child { border-right: 0; }
.process-grid span { color: var(--rust); font-family: Georgia, serif; font-size: 13px; }
.process-grid h3 { margin: 18px 0 10px; color: var(--plum-dark); font-family: var(--font-serif); font-size: 21px; }
.process-grid p { margin: 0; color: var(--site-muted); font-size: 13px; line-height: 1.75; }

.generator-section { scroll-margin-top: 70px; padding: 110px 0; background: linear-gradient(145deg, #e7dccd, #f3eadf); }
.generator-page { max-width: 940px; padding: 0 24px; }
.generator-heading { margin-bottom: 48px; }
.generator-runtime .card { background: rgba(255,253,248,0.96); border: 1px solid rgba(111,78,55,0.14); box-shadow: var(--site-shadow); }
.generator-runtime .form-card { padding: 42px; }
.report-selector-title { margin: 0 0 20px; color: var(--plum-dark); font-family: var(--font-serif); font-size: 25px; font-weight: 600; line-height: 1.35; }
.generator-runtime .segmented { background: #efe5d8; border-color: rgba(111,78,55,0.14); }
.generator-runtime .segmented-option.active { background: var(--plum); color: #fff; }
.generator-runtime .primary-btn { background: var(--plum); border-radius: 999px; }
.generator-runtime .primary-btn:hover { background: var(--plum-dark); }

.faq-section { background: #fbf7f0; }
.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro > p:last-child { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--site-line); }
.faq-list details { border-bottom: 1px solid var(--site-line); }
.faq-list summary { position: relative; padding: 26px 42px 26px 0; color: var(--plum-dark); font-family: var(--font-serif); font-size: 18px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 23px; color: var(--rust); font-family: Arial, sans-serif; font-size: 25px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -6px 40px 24px 0; color: var(--site-muted); font-size: 14px; line-height: 1.8; }

.customer-support-section { padding: 34px 0 72px; background: #fbf7f0; }
.customer-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 34px 40px;
  border: 1px solid var(--site-line);
  background: #f4eadc;
}
.customer-support-card h2 { margin: 8px 0 10px; color: var(--plum-dark); font-family: var(--font-serif); font-size: 27px; font-weight: 600; }
.customer-support-card > div > p:last-child { max-width: 620px; margin: 0; color: var(--site-muted); font-size: 14px; line-height: 1.75; }
.support-wechat { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; padding: 14px 18px; border: 1px solid rgba(111,78,55,0.18); background: #fffaf2; }
.wechat-support-mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: #07c160; color: #fff; font-weight: 700; }
.support-wechat > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.support-wechat small { color: var(--site-muted); font-size: 11px; }
.support-wechat strong { color: var(--plum-dark); font-family: Georgia, serif; font-size: 17px; letter-spacing: 0.03em; }

.site-footer { padding: 60px 0 26px; background: #28191b; color: #fff7ec; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 48px; padding-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand .brand-mark { background: #fff7ec; color: var(--plum-dark); }
.footer-brand strong { font-family: var(--font-serif); font-size: 17px; }
.footer-brand p { margin: 7px 0 0; color: rgba(255,247,236,0.52); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-links a { color: rgba(255,247,236,0.66); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.11); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,247,236,0.42); font-size: 11px; text-decoration: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .site-hero { padding: 72px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy-block { max-width: 720px; }
  .hero-orbit { width: 390px; justify-self: center; }
  .author-feature, .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .author-profile-card { width: min(100%, 520px); min-height: 440px; margin: 0 auto; }
  .faq-intro { position: static; }
  .example-row { grid-template-columns: 1fr; gap: 46px; }
  .example-row.reverse-row { grid-template-columns: 1fr; }
  .example-copy { max-width: 660px; }
  .reverse-row .example-copy, .reverse-row .report-paper, .reverse-row .example-pdf-shell { order: initial; grid-column: auto; }
  .report-paper { width: min(100%, 620px); margin: 0 auto; }
  .actual-report-showcase { grid-template-columns: 1fr; gap: 42px; }
  .actual-report-intro { position: static; max-width: 680px; }
}

@media (max-width: 700px) {
  .site-shell { width: min(100% - 32px, 1120px); }
  .nav-inner { min-height: 66px; }
  .brand-mark { width: 36px; height: 36px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .site-hero { padding: 54px 0 62px; }
  .hero-copy-block h1 { font-size: 42px; }
  .hero-lead { font-size: 15px; line-height: 1.85; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-orbit { width: min(100%, 350px); }
  .orbit-caption { top: 38px; }
  .orbit-meta { bottom: 31px; }
  .number-board { transform: scale(0.86); }
  .site-section { padding: 82px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .centered-heading { margin-bottom: 42px; text-align: left; }
  .centered-heading > p:last-child { margin-left: 0; }
  .author-feature { gap: 38px; }
  .author-profile-card { min-height: 390px; padding: 38px 26px; }
  .author-book-cover { width: min(100%, 205px); max-height: 292px; margin-bottom: 24px; }
  .author-monogram { width: 145px; height: 145px; font-size: 66px; }
  .author-method-grid { grid-template-columns: 1fr; }
  .report-product-grid { grid-template-columns: 1fr; }
  .report-product { min-height: auto; padding: 32px 26px; }
  .report-product h3 { margin-top: 32px; font-size: 27px; }
  .report-product .product-link { margin-top: 8px; }
  .example-row { margin-top: 70px; grid-template-columns: minmax(0,1fr); }
  .example-copy h3 { font-size: 27px; }
  .report-paper { min-height: 530px; padding: 34px 30px; transform: none !important; }
  .paper-header { display: grid; gap: 6px; }
  .mini-board { width: 210px; }
  .relation-heads { grid-template-columns: 1fr; gap: 7px; }
  .relation-heads em { font-size: 16px; }
  .actual-report-showcase { margin-top: 82px; padding-top: 66px; }
  .actual-report-intro h3 { font-size: 27px; }
  .sample-pdf-frame { height: 640px; }
  .example-pdf-shell .sample-pdf-frame { height: 560px; }
  .embedded-pdf-bar { min-height: 82px; padding: 18px 20px; }
  .embedded-pdf-bar span { font-size: 20px; }
  .embedded-pdf-open { padding: 0 20px; }
  .process-section { padding-top: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div { border-right: 0; border-bottom: 1px solid var(--site-line); }
  .process-grid > div:last-child { border-bottom: 0; }
  .generator-section { padding: 80px 0; }
  .generator-page { padding: 0 16px; }
  .generator-runtime .form-card { padding: 24px 20px; }
  .generator-runtime .segmented-option { font-size: 13px; }
  .faq-layout { gap: 36px; }
  .customer-support-section { padding-bottom: 54px; }
  .customer-support-card { align-items: flex-start; flex-direction: column; gap: 24px; padding: 28px 24px; }
  .support-wechat { width: 100%; }
  .footer-grid, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 15px 22px; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-copy-block h1 { font-size: 36px; }
  .hero-orbit { width: 320px; margin-left: -2px; }
  .number-board { transform: scale(0.78); }
  .orbit-caption { top: 31px; }
  .orbit-meta { bottom: 25px; }
  .report-paper { padding: 30px 22px; }
  .relation-columns { grid-template-columns: 1fr; }
  .paper-metrics strong { font-size: 15px; }
}
