:root {
  --wise-primary: #163300;
  --wise-primary-soft: #1f4708;
  --wise-secondary: #9fe870;
  --wise-secondary-soft: #e2f6d5;
  --wise-accent: #00a2dd;
  --wise-canvas: #f4f6f3;
  --wise-surface: #ffffff;
  --wise-ink: #0e0f0c;
  --wise-muted: #454745;
  --wise-text-secondary: #5d7079;
  --wise-border: rgba(0, 0, 0, 0.1);
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 10px 32px rgba(0, 0, 0, 0.15), 0 40px 40px rgba(0, 0, 0, 0.04);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wise-canvas);
  color: var(--wise-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--wise-accent);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 32px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(244, 246, 243, 0.94);
  border-bottom: 1px solid var(--wise-border);
  backdrop-filter: blur(14px);
}

.site-header.scrolled .brand,
.site-header.scrolled .nav-links,
.site-header.nav-open .brand,
.site-header.nav-open .nav-links {
  color: var(--wise-primary);
}

.site-header.scrolled .nav-toggle span,
.site-header.nav-open .nav-toggle span {
  background: var(--wise-primary);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--wise-primary);
  color: var(--wise-secondary);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
  transition: opacity 200ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.8, 0.05, 0.2, 0.95);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: #ffffff;
  transition: background 200ms ease;
}

.nav-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row.center {
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 9px 18px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  transition: background 350ms cubic-bezier(0.8, 0.05, 0.2, 0.95), color 350ms cubic-bezier(0.8, 0.05, 0.2, 0.95), border-color 350ms cubic-bezier(0.8, 0.05, 0.2, 0.95), transform 200ms ease, box-shadow 200ms ease;
}

.store-button.large {
  min-height: 54px;
  padding: 14px 24px;
}

.store-button.primary {
  background: var(--wise-secondary);
  color: var(--wise-primary);
  border-color: var(--wise-secondary);
}

.store-button.ghost {
  background: var(--wise-surface);
  color: var(--wise-primary);
  border-color: var(--wise-border);
}

.store-button.primary:hover {
  background: #8fda5f;
  border-color: #8fda5f;
}

.store-button.ghost:hover {
  border-color: var(--wise-primary);
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 51, 0, 0.2);
}

.store-button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: 46px;
  align-items: center;
  min-height: 100vh;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 88px;
  overflow: hidden;
  background: var(--wise-primary);
  color: var(--wise-surface);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 28, 0, 0.7), rgba(11, 28, 0, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wise-primary);
  font-size: 13px;
  font-weight: 900;
}

.hero-content .eyebrow,
.section-heading.dark .eyebrow {
  color: var(--wise-secondary);
}

.hero-content h1 {
  max-width: 620px;
  margin: 0;
  font-size: 76px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-en {
  margin: 16px 0 0;
  color: var(--wise-secondary);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-copy {
  max-width: 540px;
  margin: 22px 0 34px;
  color: #e4efdc;
  font-size: 21px;
  line-height: 1.65;
}

.hero-product {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.hero-image {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-elevated);
}

.hero-image.main {
  right: 0;
  bottom: 0;
  width: 320px;
  height: 590px;
}

.hero-image.panel {
  left: 0;
  top: 40px;
  width: 320px;
  height: 590px;
}

.phone-shell {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 590px;
  padding: 20px;
  border: 10px solid #0b1c00;
  border-radius: 42px;
  background: var(--wise-canvas);
  color: var(--wise-ink);
  box-shadow: var(--shadow-elevated);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--wise-primary);
  font-size: 13px;
  font-weight: 900;
}

.topic-row,
.tag-row,
.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.topic-row {
  margin: 20px 0 14px;
}

.topic-row span,
.tag-row span,
.module-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  background: var(--wise-surface);
  color: var(--wise-primary);
  border: 1px solid var(--wise-border);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.topic-row .active,
.tag-row span:first-child,
.module-pills span {
  background: var(--wise-secondary-soft);
}

.phone-card {
  margin-bottom: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--wise-surface);
  box-shadow: var(--shadow-card);
}

.phone-card.accent {
  background: var(--wise-secondary-soft);
}

.phone-card h2 {
  margin: 12px 0 8px;
  color: var(--wise-ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.phone-card p {
  margin: 0;
  color: var(--wise-muted);
  font-size: 13px;
}

.phone-player {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--wise-primary);
  color: var(--wise-surface);
}

.phone-player strong,
.phone-player small {
  display: block;
}

.phone-player small {
  color: #cbd8c4;
}

.play-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--wise-secondary);
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--wise-primary);
}

.desktop-panel {
  position: absolute;
  left: 0;
  top: 52px;
  width: 310px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--wise-surface);
  color: var(--wise-ink);
  box-shadow: var(--shadow-elevated);
}

.panel-label {
  margin: 0 0 12px;
  color: var(--wise-text-secondary);
  font-size: 13px;
  font-weight: 900;
}

.desktop-panel h2 {
  margin: 0 0 18px;
  color: var(--wise-primary);
  font-size: 24px;
  line-height: 1.15;
}

.data-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--wise-primary);
  color: var(--wise-surface);
}

.data-card strong {
  color: var(--wise-secondary);
  font-size: 38px;
  line-height: 1;
}

.data-card span {
  color: #dbe8d3;
  font-weight: 700;
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.features-intro h2,
.audio-copy h2,
.faq-copy h2,
.download-section h2 {
  margin: 0;
  color: var(--wise-primary);
  font-size: 44px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.features-intro p,
.audio-copy p {
  color: var(--wise-text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.stats-section {
  padding: 90px 24px;
  background: var(--wise-ink);
  color: var(--wise-surface);
}

.section-heading.dark h2,
.section-heading.dark p:not(.eyebrow) {
  color: var(--wise-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.stats-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--wise-primary);
  border: 1px solid rgba(159, 232, 112, 0.2);
}

.stats-grid strong {
  display: block;
  color: var(--wise-secondary);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.stats-grid span {
  display: block;
  margin-top: 16px;
  color: #dbe8d3;
  font-weight: 900;
}

.features-section,
.modules-section,
.source-section,
.faq-section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.features-section {
  background: var(--wise-surface);
}

.features-intro {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.features-intro .button-row {
  justify-content: center;
}

.features-intro p {
  margin: 18px 0 28px;
}

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

.feature-item,
.module-card,
.source-card,
.faq-item {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background: var(--wise-surface);
  border: 1px solid var(--wise-border);
  box-shadow: var(--shadow-card);
}

.feature-item span,
.module-card span,
.source-card span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  background: var(--wise-secondary-soft);
  color: var(--wise-primary);
  font-size: 13px;
  font-weight: 900;
}

.feature-item h3,
.module-card h3,
.source-card h3,
.faq-item h3 {
  margin: 18px 0 9px;
  color: var(--wise-ink);
  font-size: 23px;
  line-height: 1.2;
}

.feature-item p,
.module-card p,
.source-card p,
.faq-item p {
  margin: 0;
  color: var(--wise-text-secondary);
}

.modules-section,
.faq-section {
  background: var(--wise-surface);
}

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

.module-card.large {
  grid-column: span 2;
  min-height: 290px;
  background: var(--wise-secondary-soft);
}

.audio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--wise-primary);
  color: var(--wise-surface);
}

.audio-copy h2,
.audio-copy p {
  color: var(--wise-surface);
}

.audio-copy p {
  margin: 18px 0 0;
}

.audio-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--wise-surface);
  color: var(--wise-ink);
  box-shadow: var(--shadow-elevated);
}

.audio-head {
  display: flex;
  gap: 16px;
  align-items: center;
}

.audio-head button {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--wise-primary);
  cursor: default;
}

.audio-head button span {
  position: absolute;
  left: 24px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--wise-secondary);
}

.audio-head strong,
.audio-head small {
  display: block;
}

.audio-head strong {
  color: var(--wise-primary);
  font-size: 18px;
}

.audio-head small {
  margin-top: 3px;
  color: var(--wise-text-secondary);
}

.progress-track {
  height: 8px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--wise-secondary-soft);
}

.progress-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--wise-accent);
}

.chapter-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--wise-border);
}

.chapter-row span {
  color: var(--wise-text-secondary);
  font-weight: 900;
}

.chapter-row strong {
  color: var(--wise-ink);
}

.source-section {
  background: var(--wise-surface);
}

/* 研报机构跑马灯：Collections 式分类滚动 */
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-row {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee-left 40s linear infinite;
  will-change: transform;
}

.marquee-row:nth-child(1) .marquee-content {
  animation-duration: 38s;
}

.marquee-row:nth-child(2) .marquee-content {
  animation-duration: 46s;
}

.marquee-row:nth-child(3) .marquee-content {
  animation-duration: 42s;
}

.marquee-row.marquee-reverse .marquee-content {
  animation-name: marquee-right;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

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

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

.marquee-item {
  color: var(--wise-primary);
  font-size: clamp(20px, 2.9vw, 34px);
  line-height: 1.1;
  font-weight: 400;
  white-space: nowrap;
}

.marquee-item .en {
  color: var(--wise-text-secondary);
  font-weight: 400;
}

.marquee-sep {
  color: var(--wise-secondary);
  font-size: 0.55em;
  user-select: none;
}

.source-cta {
  margin: 40px 0 0;
  text-align: center;
}

.source-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.source-list {
  list-style: none;
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.source-more {
  margin-top: auto;
  padding-top: 22px;
  color: var(--wise-primary);
  font-size: 14px;
  font-weight: 900;
  transition: opacity 200ms ease;
}

.source-more:hover {
  opacity: 0.65;
}

.source-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wise-border);
}

.source-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.source-list strong {
  color: var(--wise-ink);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.source-list small {
  color: var(--wise-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.source-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-copy {
  margin-bottom: 34px;
}

.download-section {
  padding: 96px 24px;
  text-align: center;
  background: var(--wise-primary);
  color: var(--wise-surface);
}

.download-section h2 {
  margin-bottom: 30px;
  color: var(--wise-surface);
}

.stars {
  margin: 0 0 16px;
  color: var(--wise-secondary);
  font-size: 26px;
  letter-spacing: 3px;
}

/* 痛点共鸣（#value 上半，新增） */
.value-section,
.about-section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--wise-canvas);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.pain-item {
  padding-top: 32px;
  padding-bottom: 8px;
  border-top: 3px solid var(--wise-secondary);
}

.pain-item h3 {
  margin: 0 0 10px;
  color: var(--wise-primary);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.pain-item p {
  margin: 0;
  color: var(--wise-text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.about-section .section-heading {
  margin-bottom: 0;
}

/* 用户反馈（新增，占位模拟反馈） */
.testimonial-section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--wise-canvas);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 38px 30px;
  border-radius: var(--radius-md);
  background: var(--wise-surface);
  border: 1px solid var(--wise-border);
  box-shadow: var(--shadow-card);
}

.testimonial-card .tag {
  align-self: flex-start;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  background: var(--wise-secondary-soft);
  color: var(--wise-primary);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--wise-ink);
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-card cite {
  margin-top: auto;
  color: var(--wise-text-secondary);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

/* 产品功能：图文交替展示（feature-visual 内为占位 mockup） */
.features-showcase {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--wise-canvas);
}

.features-showcase .section-heading {
  margin-bottom: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  margin-top: 72px;
}

.feature-row.reverse .feature-visual {
  order: 2;
}

.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-image {
  display: block;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.feature-text h3 {
  margin: 0 0 18px;
  color: var(--wise-primary);
  font-size: 38px;
  line-height: 1.14;
  font-weight: 900;
}

.feature-text p {
  margin: 0;
  color: var(--wise-text-secondary);
  font-size: 19px;
  line-height: 1.7;
}

.mock-panel {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--wise-surface);
  box-shadow: var(--shadow-elevated);
}

.mock-title {
  display: block;
  margin: 6px 0 16px;
  color: var(--wise-primary);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.feature-visual .data-card + .data-card {
  margin-top: 14px;
}

.data-card.alt {
  background: var(--wise-primary-soft);
}

.mock-meta {
  margin: 0 0 18px;
  color: var(--wise-text-secondary);
  font-size: 14px;
  font-weight: 800;
}

.mock-action {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  background: var(--wise-secondary);
  color: var(--wise-primary);
  font-size: 14px;
  font-weight: 900;
}

.mock-note {
  margin: 18px 0 0;
  color: var(--wise-text-secondary);
  font-size: 12px;
}

.feature-visual .audio-panel {
  width: min(440px, 100%);
}

/* 锚点跳转避开固定 header */
#value,
#features,
#sources,
#faq,
#about {
  scroll-margin-top: 92px;
}

/* FAQ 手风琴：一行一行点击展开 */
.faq-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  color: var(--wise-ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
  transition: color 200ms ease;
}

.faq-item summary:hover {
  color: var(--wise-primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--wise-primary);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 16px 0 0;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 56px;
  }

  .feature-row.reverse .feature-visual {
    order: 0;
  }

  .feature-image {
    max-width: 320px;
  }

  .feature-text h3 {
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  .features-showcase {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  background: var(--wise-ink);
  color: var(--wise-surface);
}

.site-footer strong {
  color: var(--wise-secondary);
  font-size: 20px;
}

.site-footer p {
  margin: 8px 0 0;
  color: #cbd8c4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #cbd8c4;
  font-weight: 800;
}

.footer-links a {
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--wise-secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.8, 0.05, 0.2, 0.95), transform 600ms cubic-bezier(0.8, 0.05, 0.2, 0.95);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px 24px 18px;
    background: var(--wise-canvas);
    border-bottom: 1px solid var(--wise-border);
    box-shadow: var(--shadow-card);
    color: var(--wise-primary);
    font-size: 16px;
    display: none;
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-product {
    min-height: 620px;
  }

  .desktop-panel {
    left: 0;
  }

  .phone-shell {
    right: 36px;
  }

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

  .features-section,
  .audio-section {
    grid-template-columns: 1fr;
  }

  .features-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .store-button.ghost {
    display: none;
  }

  .hero-section {
    padding: 92px 18px 0;
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-en {
    margin: 12px 0 0;
    font-size: 20px;
  }

  .hero-copy {
    margin: 18px 0 26px;
    font-size: 17px;
  }

  .hero-product {
    min-height: 430px;
  }

  .desktop-panel {
    display: none;
  }

  .hero-image.panel {
    display: none;
  }

  .hero-image.main {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(280px, calc(100% - 40px));
    height: 420px;
  }

  .phone-shell {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(260px, calc(100% - 40px));
    height: 390px;
    padding: 14px;
    border-width: 7px;
    border-radius: 32px;
    transform: translateX(-50%);
  }

  .phone-shell.reveal,
  .phone-shell.reveal.visible {
    transform: translateX(-50%);
  }

  .topic-row {
    margin: 14px 0 10px;
  }

  .topic-row span,
  .tag-row span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .phone-card {
    padding: 12px;
  }

  .phone-card h2 {
    margin: 8px 0 6px;
    font-size: 14px;
  }

  .phone-card p {
    font-size: 11px;
  }

  .phone-card:not(.accent) {
    display: none;
  }

  .phone-player {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px;
    gap: 8px;
  }

  .play-mark {
    width: 28px;
    height: 28px;
  }

  .play-mark::after {
    left: 12px;
    top: 8px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .stats-section,
  .value-section,
  .features-section,
  .modules-section,
  .audio-section,
  .source-section,
  .testimonial-section,
  .faq-section,
  .about-section,
  .download-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading,
  .faq-copy {
    text-align: left;
  }

  .section-heading h2,
  .features-intro h2,
  .audio-copy h2,
  .faq-copy h2,
  .download-section h2 {
    font-size: 34px;
  }

  /* 移动端：kicker 标签与大标题、卡片标题与正文留白偏紧，统一放宽 */
  .eyebrow {
    margin-bottom: 20px;
  }

  .pain-item h3,
  .feature-item h3 {
    margin-bottom: 14px;
  }

  .stats-grid,
  .pain-grid,
  .feature-list,
  .module-showcase,
  .source-grid,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .module-card.large {
    grid-column: auto;
    min-height: auto;
  }

  .source-grid,
  .faq-list {
    gap: 14px;
  }

  .audio-section {
    gap: 30px;
  }

  .chapter-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .nav-links {
    gap: 18px;
    font-size: 13px;
  }

  .nav-actions .store-button.primary {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .store-button {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .stats-grid article {
    min-height: 150px;
  }

  .stats-grid strong {
    font-size: 46px;
  }
}
