/* ===== GeniusSpark 官网介绍页 - TapNow 风格 ===== */
:root {
  --top-banner-height: 0; /* 顶部公告栏已移除，仅保留固定导航 */
  --bg-page: #080c10;
  --bg-card: #0f1419;
  --bg-strip: #0b0f14;
  --bg-elevated: #131920;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #38bdf8;
  --accent-dim: rgba(56, 189, 248, 0.12);
  --accent-hover: #0ea5e9;
  --accent-glow: rgba(56, 189, 248, 0.2);
  --border: #1e293b;
  --border-subtle: rgba(30, 41, 59, 0.8);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 锚点滚动时留出固定顶栏高度，避免目标被遮挡 */
main > section[id] {
  scroll-margin-top: calc(5.5rem + var(--top-banner-height));
}
#hero {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* 跳过至主内容：仅键盘聚焦时显示，便于无障碍 */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--bg-page);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transform: translateY(-100%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- 滚动进入动效 ----- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 顶部公告栏已移除，--top-banner-height 在 :root 为 0，仅保留固定导航 */

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: var(--top-banner-height);
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 12, 16, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: top 0.25s var(--ease-out), background 0.3s, border-color 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  margin-right: auto;
}

.nav-divider {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

.header-nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.logo img,
.logo-img {
  display: block;
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
}
.logo .logo-name {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--bg-elevated); }

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}
.nav-toggle::before { top: 0.5rem; }
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle::after { bottom: 0.5rem; }
body.nav-open .nav-toggle::before { transform: translateX(-50%) translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span { opacity: 0; }
body.nav-open .nav-toggle::after { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }

.header-inner > .nav {
  gap: 1.5rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav .btn { margin-left: 0; }

/* 导航区登录/注册：与语言切换、主 CTA 风格统一，圆角与描边一致 */
.nav-auth {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  min-height: 2.25rem;
  box-sizing: border-box;
}
/* 登录：次要描边，灰色边框与文字，悬停时变为品牌色 */
.auth-login.nav-auth,
.btn-nav-login.nav-auth {
  background: transparent;
  border-color: var(--border);
  color: var(--text-secondary);
}
.auth-login.nav-auth:hover,
.btn-nav-login.nav-auth:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
/* 注册：浅色品牌填充 + 描边，比登录更突出、仍弱于主 CTA */
.auth-register.nav-auth,
.btn-nav-register.nav-auth {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.auth-register.nav-auth:hover,
.btn-nav-register.nav-auth:hover {
  background: rgba(56, 189, 248, 0.2);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.nav-auth:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-auth-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-auth-wrap--logged .nav-auth-user {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-right: 0.25rem;
}
.nav-auth-wrap--logged .auth-logout {
  background: none !important;
  border: none !important;
  padding: 0;
  min-height: auto;
  font: inherit;
  cursor: pointer;
  color: var(--text-secondary);
}
.nav-auth-wrap--logged .auth-logout:hover {
  color: var(--text-primary);
}

/* ----- 官网登录/注册弹窗 ----- */
.webonly-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.webonly-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 37, 51, 0.6);
  cursor: pointer;
}
.webonly-auth-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--bg-elevated);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 1.75rem;
}
.webonly-auth-title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}
.webonly-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.webonly-auth-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.webonly-auth-field input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text-primary);
  box-sizing: border-box;
}
.webonly-auth-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}
.webonly-auth-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.webonly-auth-field--verify .webonly-auth-verify-row {
  display: flex;
  gap: 0.5rem;
}
.webonly-auth-field--verify input {
  flex: 1;
  min-width: 0;
}
.webonly-auth-error {
  margin: 0;
  font-size: 0.9rem;
  color: #f87171;
}
.webonly-auth-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.webonly-auth-actions .btn {
  flex: 1;
}
.webonly-auth-close {
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.webonly-auth-close:hover {
  background: var(--bg);
  color: var(--text-primary);
}
.webonly-auth-switch {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.webonly-auth-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}
.webonly-auth-link:hover {
  color: var(--accent-hover);
}
body.webonly-auth-open {
  overflow: hidden;
}

.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.9rem; }

.nav-openclaw-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.95rem;
  height: 1.05rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #052533;
  background: #67e8f9;
}

.lang-toggle {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.lang-toggle button {
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lang-toggle button[aria-pressed="true"] {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.lang-toggle button:hover:not([aria-pressed="true"]) {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: #0a0e14;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #080c10;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* 主 CTA：立即开始 - 白底、黑色加粗字、高对比 */
.btn-cta-primary {
  background: #fff;
  color: #000;
  font-weight: 800;
  border: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 4px 14px rgba(0,0,0,0.25);
  min-height: 2.75rem; /* 约 44px，便于触控 */
}
.btn-cta-primary:hover {
  background: #f1f5f9;
  color: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.btn-cta-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 140px;
  text-align: center;
}
.nav .btn-cta-primary { padding: 0.5rem 1.25rem; font-size: 0.95rem; min-width: auto; }
.cta-nav-bold { color: #000 !important; font-weight: 800 !important; }
.cta-nav-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.cta-nav-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  display: none; /* 仅未登录时由 script 显示 */
}
.cta-nav-hint[aria-hidden="false"] { display: block !important; }
.nav-top { font-weight: 600; }

.hero-cta-sub,
.cta-sub {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.strip-cta .cta-sub { margin-top: 0.5rem; }

.hero-actions .btn + .btn { margin-left: 1rem; }

/* Hero 双产品入口 */
.hero--split .hero-inner { text-align: center; }
/* Hero 仅无限画布（首页首屏） */
.hero--canvas .hero-inner { text-align: center; }
.hero-actions--canvas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.hero-title--center { text-align: center; }
.hero-tagline--center { text-align: center; margin-left: auto; margin-right: auto; }
.hero-product-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-choice {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.hero-choice:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px var(--accent-glow);
  transform: translateY(-2px);
}
.hero-choice-canvas:hover { border-color: var(--accent); }
.hero-choice-openclaw { border-color: rgba(99, 102, 241, 0.35); }
.hero-choice-openclaw:hover { border-color: rgba(99, 102, 241, 0.7); }
.hero-choice-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.hero-choice-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.hero-choice-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.hero-choice:hover .hero-choice-cta { text-decoration: underline; }
@media (max-width: 768px) {
  .hero-product-choices { grid-template-columns: 1fr; gap: 1rem; }
}

/* 产品页通用 */
.product-page { padding-top: 2.5rem; }
.product-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.product-page-header--openclaw {
  border-bottom-color: rgba(99, 102, 241, 0.25);
}
.product-page-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.product-page-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.product-page-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}
.product-page-pain {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.5rem 0 0;
  max-width: 640px;
  font-style: italic;
}
.product-page-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.product-page-cta--openclaw { border-top-color: rgba(99, 102, 241, 0.2); }

/* OpenClaw 独立介绍区块 */
.product-page-openclaw {
  background: linear-gradient(180deg, var(--bg-page) 0%, rgba(99, 102, 241, 0.04) 30%, var(--bg-strip) 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3.5rem 0 4rem;
}
.openclaw-features-block { margin-bottom: 2rem; }
.openclaw-features-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}
.openclaw-features-list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.85;
}
.openclaw-features-list li { margin-bottom: 0.5rem; }
.openclaw-preset-skills { margin-top: 2rem; }
.openclaw-preset-skills-desc {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.openclaw-preset-skills-list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.85;
}
.openclaw-preset-skills-list li { margin-bottom: 0.5rem; }
.openclaw-flow-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}
.openclaw-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.openclaw-flow-step h4 { margin: 0 0 0.35rem; font-size: 1rem; }
.openclaw-flow-step p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }
/* OpenClaw 页：各内容区块统一使用 section-inner + 统一标题/卡片风格 */
.openclaw-flow {
  padding: 2.5rem 0;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}
.openclaw-get-block {
  padding: 2.5rem 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}
.openclaw-get-block .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.openclaw-get-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}
.openclaw-get-steps {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.openclaw-get-steps li { margin-bottom: 0.35rem; }
@media (max-width: 768px) {
  .openclaw-flow-steps { grid-template-columns: 1fr; }
}

/* 导航：产品区分 */
.nav-product { font-weight: 600; }
.nav-product-canvas { color: var(--accent); }
.nav-product-openclaw { color: rgba(167, 139, 250, 0.95); }
.nav-product:hover { color: var(--text-primary); }
.nav-product.nav-current { color: var(--text-primary); text-decoration: none; cursor: default; }

/* ----- Main ----- */
main { flex: 1; }

.section-inner,
.strip-inner,
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-actions {
  margin-top: 1.45rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-actions .btn {
  min-height: 2.35rem;
}

/* ----- 价格体系（价目表）----- */
.pricing-section {
  padding: 4rem 0 5rem;
}

.pricing-section .section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pricing-section-title:first-of-type {
  margin-top: 0;
}

.pricing-block {
  margin-bottom: 2.5rem;
}

.pricing-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.pricing-table th {
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-elevated);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--accent-dim);
}

.pricing-actions {
  justify-content: center;
  margin-top: 2rem;
}

/* ----- Hero（TapNow 风格：全屏感 + 渐变与光晕背景）----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(6.25rem + var(--top-banner-height)) 0 4rem; /* 顶部为提示条+固定 header 预留空间 */
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(56, 189, 248, 0.05), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(99, 102, 241, 0.05), transparent);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: meshShift 20s linear infinite;
}

@keyframes meshShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(64px, 64px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: glowPulse 8s var(--ease-in-out) infinite;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-glow);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.12);
  bottom: 10%;
  left: -80px;
  animation-delay: -3s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.hero-value-line {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-primary);
  margin: 0.5rem 0 0.25rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.hero--split .hero-value-line { text-align: center; }
.hero-outcome {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--accent);
  margin: 0.5rem 0 0.75rem;
  font-weight: 600;
}
.hero--split .hero-outcome { text-align: center; }
.hero--openclaw .hero-outcome { text-align: center; }
.hero-auth-line {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}
.hero-auth-line .hero-auth-link {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-auth-line .hero-auth-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.hero-auth-line .auth-register.hero-auth-link {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.hero-auth-line .auth-register.hero-auth-link:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  background: rgba(56, 189, 248, 0.2);
}
.hero--split .hero-auth-line { text-align: center; }
.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-proof {
  margin: -0.65rem 0 1.35rem;
  max-width: 760px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-actions {
  margin-bottom: 2.5rem;
}

.hero-visual {
  margin-top: 2rem;
}

.hero-placeholder {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-placeholder-text { display: block; }

/* Hero 占位：轻量画布动效（节点+连线） */
.hero-mock-canvas {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.hero-mock-canvas .mock-nodes {
  position: absolute;
  inset: 2rem;
  pointer-events: none;
}

.mock-node {
  position: absolute;
  width: 48px;
  height: 32px;
  background: var(--bg-elevated);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: mockNodePulse 3s var(--ease-in-out) infinite;
}

.mock-node-1 { top: 15%; left: 20%; animation-delay: 0s; }
.mock-node-2 { top: 45%; left: 35%; animation-delay: 0.4s; }
.mock-node-3 { top: 25%; right: 25%; animation-delay: 0.8s; }
.mock-node-4 { bottom: 20%; right: 30%; animation-delay: 1.2s; }

.mock-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
  border-radius: 1px;
  transform-origin: left center;
  animation: mockLineGlow 2.5s var(--ease-in-out) infinite;
}

.mock-line-1 { top: 22%; left: 26%; width: 12%; transform: rotate(-15deg); animation-delay: 0s; }
.mock-line-2 { top: 38%; left: 42%; width: 18%; transform: rotate(8deg); animation-delay: 0.5s; }
.mock-line-3 { bottom: 28%; left: 48%; width: 14%; transform: rotate(-5deg); animation-delay: 1s; }

@keyframes mockNodePulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes mockLineGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero-placeholder-hint {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

/* ----- 两大产品（双卡片）----- */
.products-section {
  padding: 4rem 0 4.5rem;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.products-intro {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.product-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.product-card-openclaw {
  border-color: rgba(99, 102, 241, 0.25);
}

.product-card-openclaw:hover {
  border-color: rgba(99, 102, 241, 0.45);
}

.product-card-inner {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.product-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.product-card-points {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.product-card-points li { margin-bottom: 0.25rem; }

.product-cta {
  align-self: flex-start;
  min-height: 2.35rem;
}

.product-card-openclaw .product-cta + .product-cta {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .products-section { padding: 3rem 0 3.5rem; }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-card-inner { padding: 1.5rem 1.25rem; }
}

/* ----- 什么是 GeniusSpark ----- */
.what-is {
  padding: 3rem 0 4rem;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.what-is-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* 画布产品页：块居中、文字左对齐，避免整块偏左 */
.product-page-canvas .product-page-header {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.product-page-canvas .what-is .what-is-inner {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

/* OpenClaw 页：强制主内容区居中，避免整页偏左 */
body.page-openclaw main .section-inner:not(.what-is-inner),
body.page-openclaw main .strip-inner,
body.page-openclaw main .hero-inner {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
/* 典型使用流程：此处为单块布局，勿用下方 index 页的 grid 覆盖 */
body.page-openclaw .openclaw-flow {
  display: block;
}

.what-is-title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.what-is-hook {
  font-size: 1rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}

.what-is-def {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.what-is-diff {
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}

/* ----- 创作面板区块 ----- */
.panel {
  padding: 5rem 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.panel-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  max-width: 640px;
  line-height: 1.3;
}
.panel-subline {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  max-width: 640px;
  line-height: 1.5;
}

.panel-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.panel-placeholder {
  background: var(--bg-card);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 创作面板占位：网格+轻量动效 */
.panel-mock-canvas {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.panel-mock-canvas .mock-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: mockGridShift 25s linear infinite;
}

@keyframes mockGridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(32px, 32px); }
}

.panel-placeholder-hint {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.panel-placeholder-label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.panel-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- 创作示例 / 灵感 ----- */
.showcase {
  padding: 4rem 0 5rem;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.showcase-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: -1rem 0 1.5rem;
}
.showcase-desc-hint {
  margin-left: 0.35em;
  opacity: 0.9;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.showcase-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.showcase-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  display: block;
  cursor: pointer;
}
.showcase-img-wrap:focus {
  outline: 2px solid rgba(56, 189, 248, 0.5);
  outline-offset: 2px;
}

.showcase-img-wrap picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 展示全图，尺寸不统一时也不裁切 */
  display: block;
}

.showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.showcase-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  padding: 1rem 1rem 0;
  color: var(--text-primary);
}

.showcase-card p {
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ----- 功能网格（TapNow 风格卡片）----- */
.features {
  padding: 5rem 0;
}
/* 核心能力与功能网格之间增加呼吸区 */
section.showcase + section.features {
  padding-top: 6.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 功能要点补充 */
.feature-detail {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.feature-detail-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.feature-detail-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.feature-detail-list li { margin-bottom: 0.35rem; }

/* ----- 应用场景 / 案例 ----- */
.cases {
  padding: 4rem 0 5rem;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.case-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.case-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-card p.case-tip {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ----- 使用流程 ----- */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
}

.steps li {
  display: grid;
  grid-template-columns: 2.5rem 2.5rem 1fr;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
  align-items: start;
}

.steps li:last-child { margin-bottom: 0; }

.step-icon {
  grid-row: span 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-num {
  grid-row: span 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 50%;
}

.steps strong {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.steps span:not(.step-num):not(.step-icon) {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----- 信任条 ----- */
.strip-trust {
  padding: 2rem 0;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.trust-line {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-line-sub {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.trust-logo-placeholder {
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 信任条仅占位时弱化，避免空白感；替换为真实 logo 后移除 strip-trust--placeholder 即可 */
.strip-trust--placeholder {
  padding: 1.25rem 0;
}
.strip-trust--placeholder .trust-line {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.strip-trust--placeholder .trust-line-sub {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.strip-trust--placeholder .trust-logo-placeholder {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ----- 重磅新功能：OpenClaw + 无限画布（前置） ----- */
.openclaw-highlight {
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
    var(--bg-page);
  border-top: 1px solid var(--border);
}

.openclaw-inner {
  max-width: 1000px;
}

.openclaw-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.openclaw-desc {
  margin: 0;
  max-width: 860px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.openclaw-metrics {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.openclaw-metric {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
  color: #dbeafe;
  font-size: 0.82rem;
  font-weight: 600;
}

.openclaw-flow {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.openclaw-flow-step {
  background: rgba(15, 20, 25, 0.58);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem;
}

.openclaw-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.openclaw-flow-step h3 {
  margin: 0 0 0.38rem;
  font-size: 0.96rem;
  line-height: 1.35;
}

.openclaw-flow-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
}

.openclaw-actions {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.openclaw-actions .btn {
  min-height: 2.35rem;
}

.openclaw-points {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.openclaw-point {
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.92), rgba(15, 20, 25, 0.75));
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.05rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.openclaw-point:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.openclaw-point h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.openclaw-point p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ----- 灵活接入多种模型（产品功能后着重展示） ----- */
.strip-engines {
  padding: 4rem 0;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.engines-prominent .engines-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.engines-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.engines-title-main {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.engines-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.engines-desc-main {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.engines-highlight {
  padding: 1rem 1.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.engines-highlight-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.engines-placeholder-wrap {
  margin-top: 0.5rem;
}

.engines-placeholder {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.strip-engines .strip-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ----- 用户评价（横向滚动） ----- */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -1.5rem;
  padding: 0.5rem 0 1rem 1.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.testimonials-scroll-wrap:active { cursor: grabbing; }
.testimonials-scroll-wrap::-webkit-scrollbar {
  height: 6px;
}
.testimonials-scroll-wrap::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 3px;
}
.testimonials-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
.testimonials-scroll-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-right: 1.5rem;
}

.testimonial-card {
  flex-shrink: 0;
  width: 300px;
  min-height: 140px;
  margin: 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-hint {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- CTA 条 ----- */
.strip-cta {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-strip) 0%, var(--bg-page) 100%);
  border-top: 1px solid var(--border);
}

.strip-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.cta-desc {
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.strip-cta .btn-cta-hero { margin: 0 auto; display: inline-block; }
.strip-openclaw-promo {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--bg-strip) 100%);
  border-top: 1px solid var(--border);
}
.strip-openclaw-promo .strip-cta-title { margin-bottom: 0.5rem; }
.strip-openclaw-promo .cta-desc { margin-bottom: 0.75rem; }
.strip-openclaw-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.strip-cta--openclaw { background: linear-gradient(180deg, var(--bg-strip) 0%, rgba(99, 102, 241, 0.05) 100%); }
.hero--openclaw .hero-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.hero-scenarios {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.hero-scenarios li { display: inline-flex; align-items: center; }
.hero-scenarios li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.5rem;
  opacity: 0.8;
}
.hero-download-label {
  margin: 1.25rem 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.hero-download-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-platform:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.08);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-platform-windows { border-color: rgba(0, 120, 215, 0.4); }
.btn-platform-windows:hover { border-color: rgba(0, 120, 215, 0.8); box-shadow: 0 4px 16px rgba(0, 120, 215, 0.25); }
.btn-platform-mac { border-color: rgba(128, 128, 128, 0.5); }
.btn-platform-mac:hover { border-color: rgba(128, 128, 128, 0.9); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.hero-cta-openclaw { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }
.hero-trust-line {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.what-is--openclaw .what-is-inner { max-width: 720px; margin: 0 auto; }
.what-is-scenarios {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.what-is-scenarios li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.what-is-scenarios li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.7);
}
.what-is-scenarios li:last-child { margin-bottom: 0; }
.what-is-privacy {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.9;
}
.compare-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
}
.compare-table th { background: var(--bg-elevated); color: var(--text-primary); font-weight: 600; }
.compare-table td { color: var(--text-secondary); }
.compare-table tbody tr:hover td { background: var(--bg-card); }
.openclaw-sys-require { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--bg-card); border-radius: var(--radius-sm); }
.openclaw-sys-require h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.openclaw-sys-require p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.openclaw-get-subtitle {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.openclaw-get-who {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
}
.openclaw-download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.openclaw-download-btn {
  min-width: 10rem;
  text-align: center;
}
@media (max-width: 480px) {
  .hero-scenarios { flex-direction: column; align-items: center; gap: 0.4rem; }
  .openclaw-download-buttons { flex-direction: column; }
  .openclaw-download-btn { width: 100%; min-width: 0; }
}
.openclaw-get-note { margin: 1rem 0 0; font-size: 0.9rem; color: var(--text-muted); }

/* ----- 联系我们 ----- */
.contact {
  padding: 4rem 0 5rem;
  background: var(--bg-strip);
  border-top: 1px solid var(--border);
}

.contact-inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: inline-block;
}

.contact-qr-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-qr {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-qr-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 1rem;
  text-align: center;
}
.contact-qr-placeholder.hide { display: none; }
.contact-qr.hide { display: none; }

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ----- FAQ ----- */
.faq {
  padding: 4rem 0 5rem;
}

.faq-list {
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
}

.faq-list dt {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.faq-list dt:first-of-type { margin-top: 0; }

.faq-question {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}
.faq-question:hover { color: var(--accent); }
.faq-question:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.faq-question::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]::after { transform: translateY(-40%) rotate(-135deg); }

.faq-answer {
  display: none;
  margin: 0;
  padding: 0.75rem 0 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-answer.is-open { display: block; }

.faq-actions {
  justify-content: center;
  margin-top: 1.6rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Footer ----- */
.site-footer {
  margin-top: auto;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-strip);
  text-align: center;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-copy {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-legal { margin: 0; font-size: 0.85rem; }

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

/* ----- Responsive：平板与手机 ----- */
@media (max-width: 1024px) {
  .section-inner,
  .strip-inner,
  .hero-inner { padding: 0 1.25rem; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .cases-grid { grid-template-columns: repeat(2, 1fr); }

  .panel { padding: 4rem 0; }
  .features { padding: 4rem 0; }
  .how-it-works { padding: 4rem 0; }
  .openclaw-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .openclaw-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-scroll-wrap { margin: 0 -1.25rem; padding-left: 1.25rem; }
  .testimonials-track { padding-right: 1.25rem; }
}

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .header-nav-right { margin-left: auto; }
  .nav-divider { display: none; }

  .nav {
    position: fixed;
    top: calc(3.35rem + var(--top-banner-height));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.3s, visibility 0.3s;
  }

  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-new-badge {
    min-width: 1.8rem;
    height: 1rem;
    font-size: 0.58rem;
  }
  .nav a:hover { background: var(--bg-elevated); }
  .nav .btn { text-align: center; margin-top: 0.5rem; }
  .nav .btn-nav-cta { order: -1; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0.75rem 1.25rem; }
  .header-nav-right .nav-auth {
    min-height: 2.75rem;
    padding: 0.5rem 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: calc(5.25rem + var(--top-banner-height)) 0 2.5rem;
  }

  .hero-title { font-size: clamp(1.85rem, 5vw, 2.5rem); }
  .hero-actions .btn + .btn { margin-left: 0.5rem; }
  .hero-proof {
    margin-top: -0.35rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-actions {
    gap: 0.6rem;
  }
  .section-actions .btn {
    width: 100%;
    text-align: center;
  }

  .openclaw-highlight {
    padding: 3rem 0 3.25rem;
  }
  .openclaw-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .openclaw-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .openclaw-metric {
    font-size: 0.78rem;
  }
  .openclaw-flow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .openclaw-actions {
    gap: 0.6rem;
  }
  .openclaw-actions .btn {
    width: 100%;
    text-align: center;
  }
  .openclaw-points {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .feature-card { padding: 1.5rem; }

  .steps li {
    grid-template-columns: 2rem 2rem 1fr;
    margin-bottom: 1.5rem;
  }

  .step-icon { width: 2rem; height: 2rem; }
  .step-icon svg { width: 1.25rem; height: 1.25rem; }
  .step-num {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .contact { padding: 3rem 0 4rem; }
  .contact-card { padding: 1.5rem; }
  .contact-qr-wrap { width: 200px; height: 200px; }

  .pricing-section { padding: 3rem 0 4rem; }
  .pricing-table th,
  .pricing-table td { padding: 0.5rem 0.75rem; font-size: 0.85rem; }

  .cases { padding: 3rem 0 4rem; }
  .cases-grid { grid-template-columns: 1fr; }
  .showcase { padding: 3rem 0 4rem; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-detail { margin-top: 2rem; padding-top: 1.5rem; }
}

@media (max-width: 480px) {
  .section-inner,
  .strip-inner,
  .hero-inner { padding: 0 1rem; }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn { width: 100%; margin-left: 0 !important; }

  .section-title { font-size: 1.5rem; }
  .panel-title { font-size: 1.35rem; }

  .contact-qr-wrap { width: 180px; height: 180px; }

  .testimonials-scroll-wrap { margin: 0 -1rem; padding-left: 1rem; }
  .testimonials-track { padding-right: 1rem; }
  .testimonial-card { width: 280px; }
}

/* ----- 点击卡片图查看大图（灯箱） ----- */
.webonly-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
.webonly-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.webonly-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.webonly-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.webonly-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
