/* AI 人生决策推演 · Apple 影像语法 · v10 */
:root {
  --canvas: #ffffff;
  --canvas-subtle: #f5f5f7;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #86868b;
  --dark: #000000;
  --tile-dark: #1d1d1f;
  --on-dark: #f5f5f7;
  --on-dark-2: #a1a1a6;
  --action: #0066cc;
  --action-hover: #0071e3;
  --action-on-dark: #2997ff;
  --hairline: rgba(0, 0, 0, 0.08);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --product-nav-h: 44px;
  --nav-h: 64px;
  --content: 980px;
  --page: 1260px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  /* legacy aliases for JS */
  --text: var(--ink);
  --text-secondary: var(--ink-2);
  --muted: var(--ink-3);
  --bg: var(--canvas);
  --bg-alt: var(--canvas-subtle);
  --surface: var(--canvas);
  --border: var(--hairline);
  --accent: var(--action-hover);
  --gold: var(--action);
  --gold-dim: var(--action);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  color: var(--ink);
  background: var(--canvas);
  letter-spacing: -0.022em;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }

/* —— 产品切换（与价值投资站共用） —— */
.product-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--product-nav-h);
  background: rgba(29, 29, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-nav-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  gap: 2px;
  height: 100%;
  align-items: stretch;
}

.product-tab {
  display: inline-flex;
  align-items: center;
  min-height: var(--product-nav-h);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: -0.01em;
}

.product-tab:hover {
  color: rgba(255, 255, 255, 0.88);
}

.product-tab.active {
  color: var(--action-on-dark);
  border-bottom-color: var(--action-on-dark);
}

/* —— Nav —— */
.apple-nav {
  position: fixed;
  top: var(--product-nav-h);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.apple-nav.apple-nav-hero:not(.is-solid)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}
.apple-nav.is-solid {
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}
.apple-nav-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 max(22px, 4vw);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.apple-logo {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.apple-nav.is-solid .apple-logo {
  color: var(--ink);
  text-shadow: none;
}
.apple-nav-cta {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
.apple-nav.is-solid .apple-nav-cta {
  color: var(--action);
  text-shadow: none;
}
.lang-switcher-wrap {
  display: flex;
  align-items: center;
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.lang-switcher-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.lang-select {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 28px 6px 10px;
  border-radius: 980px;
  border: 1px solid var(--hairline);
  background: var(--canvas-subtle);
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236e6e73' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.lang-select:hover {
  border-color: rgba(0, 0, 0, 0.15);
}
html:not(.local-dev) .apple-nav-links {
  gap: 12px;
}

.apple-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  flex-shrink: 0;
}
.apple-nav-links a {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.apple-nav.is-solid .apple-nav-links a {
  color: var(--ink);
  text-shadow: none;
}
.apple-nav-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
}
.apple-nav.is-solid .apple-nav-links a:hover {
  color: var(--action-hover);
  border-bottom-color: var(--action-hover);
}
.nav-credits {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  text-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: -0.01em;
}
.apple-nav.is-solid .nav-credits {
  background: rgba(0, 113, 227, 0.1);
  border-color: rgba(0, 113, 227, 0.25);
  color: var(--action);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary {
  background: var(--action-hover);
  color: #fff;
}
.btn-primary:hover { background: var(--action); }
.btn-ghost {
  background: transparent;
  color: var(--action-hover);
  border: 1px solid var(--action-hover);
}
.btn-ghost:hover { background: rgba(0, 113, 227, 0.06); }
.btn-on-dark {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(245, 245, 247, 0.55);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.08); }
.btn-pill { border-radius: 980px; }

/* —— Hero 满屏 —— */
.hero-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--canvas-subtle);
}
.hero-full .hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.58) contrast(1.08);
}
.hero-media.is-dark { filter: saturate(0.72) brightness(0.52) contrast(1.1); }
.hero-full .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}
.hero-full .hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: calc(var(--product-nav-h) + var(--nav-h) + 12px) 22px 0;
  transform: translateY(-4vh);
  color: var(--on-dark);
}
.hero-full .hero-copy.is-light { color: var(--ink); }
.hero-full .hero-copy.is-light .hero-sub { color: var(--ink-2); }
.hero-full .hero-copy.is-light .hero-note { color: var(--ink-3); }
.hero-title {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.5);
}
.hero-title-single {
  white-space: nowrap;
  font-size: clamp(32px, 4.8vw, 56px);
}
.hero-title-line {
  display: block;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.hero-cta .btn-pill {
  min-width: 168px;
  height: 44px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-note {
  margin-top: 1.25rem;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* —— 章节画廊 —— */
.gallery { width: 100%; }
.chapter {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(80px, 10vw, 120px) 22px;
}
.chapter-light { background: var(--canvas-subtle); }
.chapter-dark { background: var(--tile-dark); color: var(--on-dark); }
.chapter-white { background: var(--canvas); }
.chapter-inner {
  max-width: var(--content);
  margin: 0 auto;
}
.chapter-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}
.chapter-sub {
  font-size: 21px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.38;
  max-width: 680px;
}
.chapter-dark .chapter-sub { color: var(--on-dark-2); }

.split-tiles {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.split-tile {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  background: var(--canvas);
}
.split-tile:nth-child(odd) { background: var(--canvas-subtle); }
.split-tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.split-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}
.split-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}
.split-tile-copy { position: relative; z-index: 1; color: var(--on-dark); }
.split-tile h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.split-tile p { font-size: 17px; color: var(--on-dark-2); }

.statement {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.statement h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.statement p { font-size: 21px; color: var(--ink-2); line-height: 1.47; }
.chapter-dark .statement p { color: var(--on-dark-2); }

/* —— App / Ask —— */
.app-section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 22px 120px;
}
.app-section-head { margin-bottom: 2rem; }
.app-section-head h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.app-section-head p { font-size: 21px; color: var(--ink-2); margin-top: 0.5rem; }

.mode-tabs-wrap { margin-bottom: 1.5rem; }
.mode-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.mode-tabs button {
  height: 36px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 980px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.mode-tabs button.active {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
}

.card, .decision-hero {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.flow-steps {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 12px;
  color: var(--ink-3);
}
.flow-step.active { color: var(--ink); font-weight: 600; }
.flow-step.done { color: var(--ink-2); }

.privacy-banner {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 1rem;
  padding: 0;
  background: none;
  border: none;
}
.privacy-banner strong { font-weight: 600; color: var(--ink); }

textarea, input[type="text"], input:not([type]) {
  width: 100%;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  resize: vertical;
  min-height: 120px;
}
textarea:focus, input:focus {
  outline: none;
  border-bottom-color: var(--action-hover);
}
label { display: block; font-size: 12px; color: var(--ink-2); margin-bottom: 0.35rem; margin-top: 1.25rem; }

.intake-panel {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
#start-step-1 .start-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
#start-step-1 .start-sub {
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink-2);
  margin-bottom: 1.25rem;
  max-width: 28em;
}
.start-cta-row { margin-top: 1.5rem; }
.trial-device-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 0.65rem;
  line-height: 1.45;
}
.start-footnote {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 0.75rem;
}
.start-more {
  margin-top: 1.5rem;
  font-size: 14px;
  color: var(--ink-3);
}
.start-more summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink-2);
}
.start-more summary::-webkit-details-marker { display: none; }
.start-more-body { margin-top: 0.75rem; }
.mode-tabs-subtle .mode-tabs button,
.mode-tabs-subtle button {
  font-size: 13px;
  padding: 0.35rem 0.65rem;
}
.guest-seat-compact { margin-top: 2rem; }
.guest-seat-compact .advisor-head {
  font-size: 17px;
  margin-bottom: 0.75rem;
}
.guest-seat-compact .guest-mode-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0.75rem 0 1rem;
}
.guest-seat-compact .guest-mode-btn {
  min-height: 72px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  background: var(--canvas-subtle);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.guest-seat-compact .guest-mode-btn.active {
  border-color: var(--action);
  background: rgba(0, 113, 227, 0.06);
  color: var(--ink);
}
.guest-seat-compact .guest-rec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.guest-seat-compact .guest-rec-chip {
  font-size: 14px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--canvas-subtle);
  border: 1px solid var(--hairline);
}
.guest-seat-compact .guest-manual-panel .guest-pick-list {
  max-height: 240px;
  overflow-y: auto;
}
#start-step-2 #intake-panel {
  display: block;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.question-confirm-panel {
  margin-bottom: 1.5rem;
}
.question-echo {
  margin: 0.75rem 0 1rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--action);
  background: var(--canvas-subtle);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink);
  font-style: normal;
}
.question-preview-reframe {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 36em;
}
.question-preview-reframe em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.question-confirm-hint {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 0.75rem;
}
.intake-details {
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 0.35rem 1rem 0.75rem;
  background: var(--canvas-subtle);
}
.intake-details-summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 0.65rem 0;
  list-style: none;
}
.intake-details-summary::-webkit-details-marker { display: none; }
.intake-details[open] .intake-details-summary { margin-bottom: 0.5rem; }
.intake-links { margin-top: 0.5rem; }

/* 展示态 / 开发态 */
.dev-only,
.dev-only-advisor,
.dev-panel,
#llm-settings-section { display: none !important; }
html.dev-mode .dev-only { display: block !important; }
html.dev-mode .dev-panel,
html.dev-mode #llm-settings-section {
  display: block !important;
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 9000;
  max-width: 360px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
html.dev-mode .btn-demo-only { display: inline-flex !important; }
.btn-demo-only { display: none !important; }
html.dev-mode .dev-only-advisor[hidden] { display: none !important; }
.intake-type-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}
.intake-type-badge { font-size: 12px; color: var(--ink-2); margin: 0; }
.intake-type-change {
  font-size: 12px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.intake-type-select {
  font-size: 12px;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}
.intake-hint { font-size: 14px; color: var(--ink-3); margin-bottom: 1rem; }
.intake-field-missing,
.intake-field-missing:focus {
  border-bottom-color: #bf4800 !important;
  background: rgba(191, 72, 0, 0.06);
}
.intake-step-label {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 0.75rem;
}
.material-panel summary { font-size: 14px; font-weight: 600; }
.hint { font-size: 14px; color: var(--ink-3); line-height: 1.47; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; align-items: center; }
.start-row { margin-top: 2rem; }

/* —— 顾问磁贴 —— */
.guest-seat-section h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.5rem;
}
.advisor-grid {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  border-top: 1px solid var(--hairline);
}
.advisor-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}
.advisor-tile:hover { opacity: 0.88; }
.advisor-tile.is-selected .advisor-tile-name { color: var(--ink); }
.advisor-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--action-hover);
  cursor: pointer;
}
.advisor-tile-copy {
  flex: 1;
  min-width: 0;
  padding: 0;
}
.advisor-tile-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.advisor-tile-scope { font-size: 17px; color: var(--ink-2); line-height: 1.47; }
.advisor-tile-banned { font-size: 12px; color: var(--ink-3); margin-top: 0.35rem; }

.custom-persona-add { display: flex; gap: 8px; margin-bottom: 0.75rem; }
.custom-persona-add input { min-height: auto; flex: 1; }
.guest-mode-row { display: flex; gap: 8px; margin: 1rem 0; }
.guest-mode-btn {
  height: 32px;
  padding: 0 14px;
  font-size: 12px;
  border-radius: 980px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  cursor: pointer;
}
.guest-mode-btn.active { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.guest-rec-hint, .guest-count-hint, .guest-selection-preview { font-size: 12px; color: var(--ink-3); margin-top: 0.35rem; }
.guest-pick-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--hairline);
}
.guest-pick-head {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 0.65rem 0 0.35rem;
}
.guest-pick-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  font-size: 15px;
}
.guest-pick-row input { accent-color: var(--action-hover); width: 18px; height: 18px; flex-shrink: 0; }
.guest-pick-name { font-weight: 600; color: var(--ink); }
.guest-pick-role { font-size: 12px; color: var(--ink-3); margin-left: auto; }
.guest-pick-more summary {
  font-size: 13px;
  font-weight: 600;
  padding: 0.75rem 0;
  cursor: pointer;
  color: var(--action);
}
#guest-picker .guest-mode-row,
#guest-picker .guest-auto-panel { display: none !important; }
#guest-picker .custom-persona-add { margin-top: 0.5rem; }

.paywall-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.25rem 0 0.5rem;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--ink-2);
}
.paywall-value-strip li::before { content: '✓ '; color: var(--action); font-weight: 600; }

.distill-edge { padding: 2.5rem 0 1.5rem; border-bottom: 1px solid var(--hairline); }
.distill-edge-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 1.5rem;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
}
.distill-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
}
@media (max-width: 640px) { .distill-compare { grid-template-columns: 1fr; } }
.distill-compare-col {
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: var(--canvas-subtle);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.distill-compare-highlight {
  border-color: rgba(0, 113, 227, 0.35);
  background: rgba(0, 113, 227, 0.05);
}
.distill-compare-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.65rem; color: var(--ink-3); }
.distill-compare-highlight .distill-compare-label { color: var(--action); }
.distill-compare-col ul { margin: 0; padding-left: 1.1rem; }
.distill-compare-col li { margin-bottom: 0.35rem; }
.distill-edge-foot { text-align: center; font-size: 14px; color: var(--ink-3); max-width: 36em; margin: 0 auto; line-height: 1.5; }

.speech-source-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.speech-source-llm {
  color: #0071e3;
  background: rgba(0, 113, 227, 0.1);
  border: 1px solid rgba(0, 113, 227, 0.25);
}
.speech-source-local {
  color: #86868b;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--hairline);
}
.speech-source-warn {
  color: #bf4800;
  background: rgba(191, 72, 0, 0.08);
  border: 1px solid rgba(191, 72, 0, 0.2);
}

.distill-os-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--action);
  border: 1px solid rgba(0, 113, 227, 0.22);
  margin-bottom: 0.65rem;
}
.distill-os-badge.distill-os-stub {
  background: var(--canvas-subtle);
  color: var(--ink-3);
  border-color: var(--hairline);
}

.verdict-card {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(0, 113, 227, 0.08), rgba(0, 113, 227, 0.02));
  border: 1px solid rgba(0, 113, 227, 0.18);
}
.verdict-card-label { font-size: 12px; font-weight: 600; color: var(--ink-3); margin: 0 0 0.35rem; text-transform: uppercase; letter-spacing: 0.04em; }
.verdict-card-oneliner { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; margin: 0 0 0.75rem; color: var(--ink); }
.verdict-card-action, .verdict-card-stop { font-size: 15px; line-height: 1.45; margin: 0.5rem 0 0; color: var(--ink-2); }
.verdict-card-action .verdict-card-label, .verdict-card-stop .verdict-card-label { display: inline; margin-right: 0.35rem; }

.report-preview-dialog {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: 520px;
  width: calc(100% - 2rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.report-preview-dialog::backdrop { background: rgba(0, 0, 0, 0.45); }
.report-preview { padding: 1.5rem 1.5rem 0.5rem; }
.report-preview-lead { font-size: 14px; color: var(--ink-3); margin: 0 0 1rem; }
.report-preview-table { width: 100%; font-size: 14px; border-collapse: collapse; margin-bottom: 1rem; }
.report-preview-table th { text-align: left; vertical-align: top; width: 28%; padding: 0.4rem 0.75rem 0.4rem 0; color: var(--ink-3); font-weight: 600; }
.report-preview-table td { padding: 0.4rem 0; color: var(--ink); line-height: 1.45; }
.report-preview-label { font-size: 12px; font-weight: 600; color: var(--ink-3); margin: 0 0 0.35rem; }
.report-preview-list { margin: 0 0 1rem 1.1rem; padding: 0; font-size: 14px; color: var(--ink-2); }
.report-preview-cost { font-size: 13px; color: var(--ink-3); margin: 0; }
.report-preview-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0 1.5rem 1.25rem; justify-content: flex-end; }
#guest-picker .custom-persona-add .btn { height: 36px; font-size: 12px; padding: 0 14px; }
/* 有磁贴目录时，隐藏 picker 内重复的长列表 */
.guest-seat-compact:has(#advisor-catalog:not(:empty)) #guest-picker .guest-manual-panel {
  display: none !important;
}

.advisor-head {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.35rem;
}
.advisor-hint {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 0.75rem;
}
.advisor-catalog { margin-top: 0.25rem; }
.advisor-cat {
  border-bottom: 1px solid var(--hairline);
}
.advisor-cat summary {
  padding: 11px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.advisor-cat summary::-webkit-details-marker { display: none; }
.advisor-cat summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--ink-3);
}
.advisor-cat[open] summary::after { content: "−"; }
.advisor-cat-body { padding-bottom: 8px; }
.advisor-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 10px;
}
.advisor-tile-compact {
  position: relative;
  display: block;
  padding: 10px 12px 11px;
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  min-height: 0;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.advisor-tile-compact:hover {
  opacity: 1;
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.advisor-tile-compact.is-selected {
  border-color: var(--action-hover);
  background: rgba(0, 113, 227, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.12);
}
.advisor-tile-compact .advisor-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  margin: 0;
}
.advisor-tile-compact .advisor-tile-copy {
  padding-right: 22px;
}
.advisor-tile-compact .advisor-tile-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}
.advisor-tile-compact .advisor-tile-scope {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ask-head { margin-bottom: 1.5rem; }
.ask-head .chapter-headline { font-size: clamp(28px, 4vw, 40px); }
.privacy-line { font-size: 12px; color: var(--ink-3); margin-bottom: 1rem; }
.ask-actions { margin-top: 1.25rem; }
.ask-actions .btn-primary { min-width: 120px; }
.text-link-row { margin-top: 1rem; font-size: 17px; color: var(--ink-3); }
.text-link {
  background: none; border: none; padding: 0; font: inherit;
  color: var(--action-hover); cursor: pointer;
}
.text-link-sep { margin: 0 0.35rem; }
.mode-tabs-wrap { margin-bottom: 1.25rem; }
.material-panel summary { font-size: 12px; font-weight: 400; color: var(--ink-2); cursor: pointer; }
.free-credits-hint { font-size: 12px; color: var(--ink-3); margin-top: 0.75rem; }
.free-credits-hint a { color: var(--action-hover); }
.free-credits-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--action);
}
.free-credits-badge.empty { color: var(--ink-3); font-weight: 500; }

/* —— 会员仪表盘 —— */
.member-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 1.75rem;
}
@media (max-width: 640px) {
  .member-stats-row { grid-template-columns: 1fr; }
}
.member-stat {
  background: var(--canvas-subtle);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
  text-align: center;
}
.member-stat-primary {
  background: linear-gradient(145deg, rgba(0, 113, 227, 0.12) 0%, rgba(0, 113, 227, 0.04) 100%);
  border-color: rgba(0, 113, 227, 0.35);
}
.member-stat-empty .member-stat-num { color: var(--ink-3); }
.member-stat-num {
  display: block;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--action);
  margin-bottom: 0.35rem;
}
.member-stat-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.member-stat-sub {
  display: block;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.35;
}
.member-stat-sub.warn { color: #bf4800; }

.member-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.member-panel-wide { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .member-dashboard { grid-template-columns: 1fr; }
  .member-panel-wide { grid-column: auto; }
}
.member-panel {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.member-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.member-panel-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.member-panel-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.2rem;
  color: var(--ink);
}
.member-panel-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.4;
}
.member-panel-foot {
  font-size: 13px;
  color: var(--ink-3);
  margin: 1rem 0 0;
  line-height: 1.4;
}
.member-wallet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.member-wallet-actions .btn { font-size: 14px; padding: 0.5rem 1rem; }
.member-access-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  min-height: 0;
}
.pill-ok, .pill-warn, .pill-meta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.pill-ok { background: rgba(0, 113, 227, 0.1); color: var(--action); }
.pill-warn { background: rgba(191, 72, 0, 0.1); color: #bf4800; }
.pill-meta { background: var(--canvas-subtle); color: var(--ink-3); font-weight: 500; }

.network-banner {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-top: 0.75rem;
  font-size: 14px;
  line-height: 1.45;
}
.network-banner-idle { background: var(--canvas-subtle); color: var(--ink-2); }
.network-banner-ok { background: rgba(0, 113, 227, 0.08); border: 1px solid rgba(0, 113, 227, 0.2); }
.network-banner-warn { background: rgba(191, 72, 0, 0.08); border: 1px solid rgba(191, 72, 0, 0.25); }
.network-banner-lead { margin: 0 0 0.25rem; font-weight: 600; color: var(--ink); font-size: 15px; }
.network-banner-sub { margin: 0 0 0.65rem; color: var(--ink-3); font-size: 13px; }
.chain-switch-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  margin: 0 0 0.65rem;
}
.chain-switch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-chain {
  font-size: 14px;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 2px solid var(--hairline);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, border-color 0.12s, background 0.12s, color 0.12s;
}
.btn-chain:hover {
  border-color: var(--action);
  color: var(--action);
  transform: translateY(-1px);
}
.btn-chain.active {
  background: var(--action);
  border-color: var(--action);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.35);
  transform: scale(1.04);
}
.btn-wallet-connect {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 0.65rem 1.35rem !important;
  min-height: 48px;
}
.invite-ref-credits-earned {
  margin-top: 0.65rem;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}

.invite-one-liner {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}
.member-panel-head-compact {
  margin-bottom: 1.25rem;
}
.member-panel-head-compact .member-panel-title { margin: 0; }

.member-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.member-referral-row {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}
.member-referral-row input {
  flex: 1;
  font-size: 14px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--canvas-subtle);
}
.member-referral-row .btn { flex-shrink: 0; padding: 0.55rem 1.1rem; }
.member-bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.member-bullet-list li { margin-bottom: 0.35rem; }

.diamond-panel { padding: 0; font-size: inherit; }
.diamond-hero-num {
  font-size: clamp(44px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--action);
  margin: 0 0 0.75rem;
  line-height: 1;
}
.diamond-placeholder-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0.5rem 0;
  line-height: 1;
}
.diamond-placeholder-hint, .diamond-foot {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.45;
}
.diamond-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.diamond-mini-stat {
  background: var(--canvas-subtle);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
}
.diamond-mini-stat span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.diamond-mini-stat label {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 0.25rem;
}

.pricing-rate-line {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 1rem;
}
.pricing-treasury-foot {
  font-size: 13px;
  color: var(--ink-3);
  margin: 1rem 0 0;
}
.price-grid-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: none;
}
@media (max-width: 640px) {
  .price-grid-hero { grid-template-columns: 1fr; }
}
.price-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--hairline);
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 0.25rem;
  min-height: 220px;
}
.price-card-featured {
  border-color: var(--action);
  background: linear-gradient(165deg, rgba(0, 113, 227, 0.14) 0%, #fff 50%);
  box-shadow: 0 8px 32px rgba(0, 113, 227, 0.18);
  transform: scale(1.02);
}
.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--action);
  color: #fff;
}
.price-card-tag {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-3);
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-usd-main {
  font-size: clamp(40px, 5vw, 52px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
  color: var(--ink) !important;
  line-height: 1;
  margin: 0.15rem 0;
}
.price-credits-line {
  font-size: 18px;
  font-weight: 600;
  color: var(--action);
  margin: 0 0 0.35rem;
}
.price-native {
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.btn-pay-large {
  width: 100%;
  min-height: 52px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
  margin-top: auto;
}
.btn-pay-large:disabled {
  opacity: 0.55;
  background: var(--ink-3) !important;
  border-color: var(--ink-3) !important;
}
.price-card:not(.price-card-featured) .btn-pay-large {
  background: var(--ink);
  border-color: var(--ink);
}
.price-card:not(.price-card-featured) .btn-pay-large:hover:not(:disabled) {
  background: #333;
}

.pay-block-notice {
  font-size: 13px;
  line-height: 1.45;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: var(--canvas-subtle);
  color: var(--ink-2);
}
.pay-block-warn {
  background: rgba(191, 72, 0, 0.1);
  border: 1px solid rgba(191, 72, 0, 0.3);
  color: #bf4800;
  font-weight: 600;
}
.ref-invite-banner {
  font-size: 14px;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(0, 113, 227, 0.08);
  margin-bottom: 0.75rem;
  color: var(--ink-2);
}

/* —— 大标题板块（赚钱 / 会员） —— */
.section-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 0.5rem;
}
.section-display-title {
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}
.section-display-lead {
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.47;
  color: var(--ink-2);
  max-width: 38em;
  margin-bottom: 2rem;
}
.block-label {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.member-panel-simple {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, var(--canvas-subtle) 60%);
}
.pricing-simple-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.pricing-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}
body.locale-web3 .member-panel-simple { display: none; }
body.locale-simple:not(.web3-expanded) .member-dashboard { display: none; }
body.locale-simple.web3-expanded .member-dashboard { display: grid; }

.landing-page { background: var(--canvas); color: var(--ink); min-height: 100vh; }
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  background: rgba(251, 251, 253, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.landing-nav a { color: var(--action); text-decoration: none; font-weight: 600; }
.landing-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
.landing-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.landing-hero p { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.5rem; }
.landing-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.landing-faq h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.landing-faq details {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  background: var(--canvas-subtle);
  padding: 0.15rem 1rem;
}
.landing-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}
.landing-faq summary::-webkit-details-marker { display: none; }
.landing-faq details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.landing-cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.earn-section {
  padding-top: 3rem;
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.04) 0%, var(--canvas) 40%);
}
.earn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .earn-grid { grid-template-columns: 1fr; }
}
.earn-card {
  background: var(--canvas-subtle);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
}
.earn-card-highlight {
  border-color: rgba(0, 113, 227, 0.35);
  background: rgba(0, 113, 227, 0.06);
}
.earn-stat {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--action);
  margin: 0 0 0.5rem;
}
.earn-card-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.earn-card-body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink-2);
  margin: 0;
}
.earn-card-body code { font-size: 0.92em; }
.earn-cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.earn-footnote { font-size: 15px; color: var(--ink-3); margin: 0; }

.membership-section { padding-top: 3rem; border-top: 1px solid var(--hairline); }
.membership-teaser { font-size: 16px; color: var(--ink-3); margin-top: 0.75rem; }
.membership-teaser a { color: var(--action-hover); font-weight: 500; }
.btn-local-grant { display: none !important; }
html.local-dev .btn-local-grant { display: inline-flex !important; }
html.local-dev .btn-demo-only { display: inline-flex !important; }
.step-num, .flow-steps { display: none !important; }

/* —— 推演 · 排版页 —— */
#simulation { max-width: none; padding: 0; margin: 0; }
#simulation.hidden { display: none; }
.progress-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 12px 22px;
  font-size: 12px;
  color: var(--ink-3);
  background: var(--canvas-subtle);
  border-bottom: 1px solid var(--hairline);
}
.progress-step.current { color: var(--ink); font-weight: 600; }
.progress-step.done { color: var(--ink-2); }

#simulation .card {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(64px, 8vw, 100px) 22px;
  border: none;
  box-shadow: none;
}
#section-intake { background: var(--canvas-subtle); }
#section-reframe { background: var(--canvas); }
#section-round1, #section-guests { background: var(--tile-dark); padding: 0; }
#section-debate { background: var(--canvas-subtle); }
#section-timeline { background: var(--tile-dark); color: var(--on-dark); }
#section-conclusion { background: var(--canvas); }

#section-intake .chapter-inner,
#section-reframe .chapter-inner,
#section-debate .chapter-inner,
#section-conclusion .chapter-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.roundtable { display: none !important; }
#speech-box, #guest-speech-box { padding: 0; margin: 0; }

.council-actions {
  max-width: var(--content);
  margin: 0 auto;
  padding: 32px 22px 72px;
  background: var(--tile-dark);
}
#section-debate .actions,
#section-timeline .actions,
#section-conclusion .actions {
  max-width: var(--content);
  margin: 0 auto;
  padding-top: 0;
}
#section-timeline .actions { background: var(--tile-dark); padding-bottom: 72px; }

.council-chapter {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: stretch;
  background: var(--chapter-tone, var(--tile-dark));
}
.council-chapter-inner {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 22px;
  color: var(--on-dark);
}
.verdict-answer-block {
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  max-width: 720px;
}
.verdict-answer-label,
.verdict-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--on-dark-2);
  margin-bottom: 0.5rem;
}
.verdict-answer {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}
.verdict-section { margin-bottom: 1.5rem; max-width: 720px; }
.council-story {
  margin-bottom: 1.25rem;
  max-width: 720px;
  color: var(--on-dark-2);
}
.council-story summary {
  font-size: 14px;
  cursor: pointer;
  color: var(--on-dark-2);
  margin-bottom: 0.5rem;
  list-style: none;
}
.council-story summary::-webkit-details-marker { display: none; }
.verdict-kicker {
  font-size: 12px;
  font-weight: 400;
  color: var(--on-dark-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: block;
}
.verdict-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.verdict-lead {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.47;
  color: var(--on-dark);
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.editorial-block { margin-bottom: 1.5rem; max-width: 720px; }
.editorial-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-bottom: 0.35rem;
}
.editorial-text { font-size: 17px; line-height: 1.47; color: var(--on-dark); }
.editorial-muted .editorial-text { color: var(--on-dark-2); }
.verdict-punchline { display: none; }

.advisor-section { margin-bottom: 1.25rem; max-width: 720px; }
.advisor-section-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--on-dark);
}
.advisor-section-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 17px;
  line-height: 1.47;
  color: rgba(255, 255, 255, 0.88);
}
.advisor-section-list li { margin-bottom: 0.45rem; }

.panel-synthesis { max-width: 720px; }
.panel-synthesis-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.panel-diagram {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-dark-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  white-space: pre-wrap;
}
.panel-c-option { font-size: 17px; margin: 1rem 0; color: var(--on-dark); }
.panel-action-list {
  margin: 0.75rem 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink);
}
.panel-action-list li { margin-bottom: 0.6rem; }
.panel-oneliner { margin-top: 1.5rem; }
/* 实操包：浅色背景，勿用 --on-dark */
#section-conclusion .panel-synthesis { color: var(--ink); }
#section-conclusion .panel-synthesis-title {
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
#section-conclusion .panel-synthesis .editorial-text {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.47;
  margin-bottom: 1rem;
}
#section-conclusion .panel-diagram {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas-subtle);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  white-space: pre-wrap;
}
#section-conclusion .panel-c-option {
  font-size: 17px;
  line-height: 1.47;
  margin: 1rem 0;
  color: var(--ink);
}
#section-conclusion .panel-c-option strong { color: var(--ink); }
#section-conclusion .panel-action-list { color: var(--ink); }
#section-conclusion .editorial-label { color: var(--ink-3); }
#section-conclusion .panel-synthesis .verdict-answer {
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.35;
}
#section-conclusion .panel-synthesis .verdict-answer-block {
  background: var(--canvas-subtle);
  border: 1px solid var(--hairline);
  border-radius: 16px;
}
#section-conclusion .panel-synthesis .verdict-answer-label { color: var(--ink-3); }

#section-reframe .real-problem {
  font-size: 21px;
  line-height: 1.47;
  color: var(--ink);
  max-width: 720px;
}
#section-reframe .real-problem em { font-style: normal; font-weight: 600; color: var(--ink); }
.reframe-source-badge { font-size: 12px; color: var(--ink-3); margin-bottom: 0.5rem; }
.reframe-source-badge.llm { color: #0071e3; font-weight: 600; }
.reframe-source-badge.demo { color: #bf4800; }
.reframe-user-question { font-size: 17px; color: var(--ink-2); margin-bottom: 1rem; }

.debate-editorial { max-width: var(--content); margin: 0 auto 3rem; padding: 0 22px; }
.debate-editorial-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.debate-editorial-line {
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink-2);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--hairline);
}

/* —— Rich 5 年路径（表格 · 无大图） —— */
.path-rich {
  max-width: var(--content);
  margin: 0 auto;
  padding: 48px 22px 64px;
  color: var(--on-dark);
}
.path-rich-head {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.path-rich-intro {
  font-size: 17px;
  line-height: 1.47;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.path-critique {
  font-size: 15px;
  line-height: 1.45;
  color: var(--on-dark-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 2rem;
  max-width: 720px;
}
.path-critique-label { font-size: 12px; font-weight: 600; margin-bottom: 0.5rem; color: var(--on-dark-2); }
.path-track { margin-bottom: 2.5rem; }
.path-track-c { padding: 1.25rem; border-radius: 16px; background: rgba(0, 113, 227, 0.08); border: 1px solid rgba(0, 113, 227, 0.25); }
.path-track-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.path-track-sub { font-size: 15px; color: var(--on-dark-2); margin-bottom: 0.75rem; }
.path-rec-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--action-on-dark);
  vertical-align: middle;
}
.path-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.path-table th,
.path-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}
.path-table th {
  font-size: 12px;
  font-weight: 600;
  color: var(--on-dark-2);
  background: rgba(255, 255, 255, 0.04);
}
.path-td-time { white-space: nowrap; font-weight: 500; color: rgba(255, 255, 255, 0.92); min-width: 7em; }
.path-track-oneliner {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}
.path-decision { margin-top: 2rem; max-width: 720px; }
.path-decision-no { font-size: 15px; color: var(--on-dark-2); margin-bottom: 0.35rem; }
.path-decision-yes { font-size: 17px; font-weight: 600; color: #fff; margin-top: 0.5rem; }
.path-principles { font-size: 15px; color: var(--on-dark-2); margin-top: 1.5rem; max-width: 720px; line-height: 1.5; }
@media (max-width: 734px) {
  .path-table { font-size: 13px; }
  .path-td-time { white-space: normal; }
}

.path-stack { display: flex; flex-direction: column; }
.path-panel {
  min-height: 50vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)), var(--path-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.path-panel-inner {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 64px 22px;
  color: var(--on-dark);
}
.path-panel-title { font-size: 28px; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.path-node { margin-bottom: 1.25rem; max-width: 640px; }
.path-node-year { font-size: 12px; font-weight: 600; color: var(--on-dark-2); margin-bottom: 0.25rem; }
.path-node-text { font-size: 17px; line-height: 1.47; }
.path-horizon {
  min-height: 40vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6)), var(--path-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.path-horizon-inner { padding: 48px 22px; color: var(--on-dark); }
.path-horizon-label { font-size: 12px; color: var(--on-dark-2); margin-bottom: 0.5rem; }
.path-horizon-text { font-size: 21px; font-weight: 600; }

.conclusion-headline {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.editorial-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 17px;
}
.editorial-table th,
.editorial-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-weight: 400;
}
.editorial-table th { color: var(--ink-2); width: 28%; }
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 2rem;
}
.editorial-week {
  list-style: none;
  counter-reset: w;
}
.editorial-week li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 17px;
}
.editorial-week em { font-style: normal; color: var(--ink-3); font-size: 14px; }

.one-liner { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 1rem; }
.roster-bar { font-size: 14px; color: var(--ink-2); margin-top: 0.5rem; }
.roster-chip {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 14px;
  color: var(--ink-2);
}

.disclaimer-footer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  padding: 48px 22px 64px;
  border-top: 1px solid var(--hairline);
}
.footer-link {
  color: var(--ink-2);
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }
@media (max-width: 520px) {
  .hero-title-single { white-space: normal; }
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29, 29, 31, 0.92);
  color: var(--on-dark);
  padding: 12px 20px;
  border-radius: 980px;
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.toast.show { opacity: 1; }

/* —— 大模型推演 · 解密风加载层 —— */
.llm-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 150;
  overflow: hidden;
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
}
.llm-overlay.visible,
.llm-overlay.active { display: flex; }

.llm-overlay-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 255, 170, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 120, 255, 0.06) 0%, transparent 50%),
    rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
}

.llm-cipher-stream {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  opacity: 0.14;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}
.llm-cipher-col {
  font-size: 11px;
  line-height: 1.35;
  color: #00ffb2;
  white-space: pre;
  animation: llm-cipher-fall 9s linear infinite;
  animation-delay: var(--col-i, 0s);
}
@keyframes llm-cipher-fall {
  0% { transform: translateY(-8%); }
  100% { transform: translateY(8%); }
}

.llm-overlay-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 170, 0.025) 2px,
    rgba(0, 255, 170, 0.025) 4px
  );
  animation: llm-scan-move 6s linear infinite;
}
@keyframes llm-scan-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 120px; }
}

.llm-overlay-box {
  position: relative;
  z-index: 2;
  width: min(92vw, 560px);
  padding: 2.25rem 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 170, 0.35);
  background: rgba(10, 16, 24, 0.92);
  box-shadow:
    0 0 0 1px rgba(0, 255, 170, 0.08) inset,
    0 0 48px rgba(0, 255, 170, 0.12),
    0 24px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: llm-box-in 0.45s var(--ease) both;
}
@keyframes llm-box-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: none; }
}

.llm-overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00ffb2;
  background: rgba(0, 255, 170, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.25);
}
.llm-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffb2;
  box-shadow: 0 0 10px #00ffb2;
  animation: llm-pulse-dot 1.2s ease-in-out infinite;
}
@keyframes llm-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.llm-overlay-title {
  font-size: clamp(28px, 5.5vw, 40px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #f0fff8;
  margin: 0 0 0.85rem;
  text-shadow: 0 0 24px rgba(0, 255, 170, 0.35);
  font-family: var(--font);
}

.llm-overlay-status {
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #00ffb2;
  margin: 0 0 1.25rem;
  min-height: 1.4em;
  text-shadow: 0 0 16px rgba(0, 255, 170, 0.4);
}

.llm-overlay-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.llm-overlay-progress-bar {
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #00ffb2, #00c8ff, transparent);
  animation: llm-progress-slide 1.8s ease-in-out infinite;
}
@keyframes llm-progress-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.llm-overlay-terminal {
  text-align: left;
  max-height: 108px;
  overflow: hidden;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 170, 0.15);
  margin-bottom: 1rem;
}
.llm-terminal-line {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(160, 230, 200, 0.85);
  animation: llm-line-in 0.35s ease both;
}
.llm-terminal-line:last-child { color: #00ffb2; }
@keyframes llm-line-in {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: none; }
}

.llm-overlay-foot {
  font-size: 12px;
  color: rgba(160, 180, 170, 0.55);
  letter-spacing: 0.06em;
  margin: 0;
  font-family: var(--font);
}

@media (max-width: 520px) {
  .llm-overlay-box { padding: 1.75rem 1.25rem 1.25rem; }
  .llm-overlay-terminal { max-height: 88px; }
}

.hidden { display: none !important; }

/* hide legacy marketing */
.slogan-section, .features-section, .bento, .slogan-grid, .gallery, .split-tiles { display: none !important; }

/* web3 minimal */
.disclaimer-footer { font-size: 14px; }
.disclaimer-footer .footer-link { font-size: 15px; font-weight: 500; }
.risk-banner-ashare.visible {
  font-size: 12px;
  color: var(--ink-2);
  padding: 12px 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--hairline);
}

/* LLM 连接状态 */
.llm-live-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  padding: 4px 10px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  color: #248a3d;
  background: rgba(36, 138, 61, 0.1);
  border: 1px solid rgba(36, 138, 61, 0.25);
}

/* 语音输入 */
.voice-input-wrap { margin-bottom: 0.5rem; }
.voice-input-hero textarea {
  min-height: 96px;
  margin-bottom: 0.75rem;
}
.voice-input-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.voice-input-hint {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}
.btn-voice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  border-radius: 980px;
  background: var(--canvas-subtle);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-voice:hover:not(:disabled) {
  background: #ebebed;
  border-color: rgba(0, 0, 0, 0.12);
}
.btn-voice:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.btn-voice-primary {
  background: var(--action-hover);
  border-color: transparent;
  color: #fff;
  padding: 12px 22px;
  font-size: 16px;
}
.btn-voice-primary:hover:not(:disabled) {
  background: var(--action);
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.35);
}
.btn-voice.is-listening,
.btn-voice-primary.is-listening {
  background: #ff3b30;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.25);
  animation: voice-pulse 1.2s ease-in-out infinite;
}
@keyframes voice-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(255, 59, 48, 0.08); }
}
.btn-voice-icon { font-size: 1.1em; line-height: 1; }
.btn-voice-inline {
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 13px;
}
.intake-panel label:has(.btn-voice-inline) {
  position: relative;
}
.intake-panel .btn-voice-inline {
  margin-top: 6px;
  margin-bottom: 0.5rem;
}

@media (max-width: 980px) {
  .advisor-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 734px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .advisor-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .advisor-tile-compact { padding: 9px 10px 10px; }
  .advisor-tile-compact .advisor-tile-name { font-size: 14px; }
  .hero-full .hero-copy {
    transform: translateY(-2vh);
    padding-top: calc(var(--product-nav-h) + var(--nav-h) + 8px);
  }
  .hero-title { font-size: clamp(32px, 8.5vw, 44px); margin-bottom: 0.85rem; }
  .hero-sub { font-size: 17px; max-width: 18em; margin-bottom: 1.75rem; }
  .hero-note { font-size: 11px; margin-top: 1rem; }
  .app-section { padding-bottom: 80px; }
}
