*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-primary: #3370ff;
  --blue-hover: #2860e0;
  --blue-soft: #e8f0ff;
  --accent-violet: #6b5cff;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --text-light: #999;
  --bg-page: #f3f5fa;
  --bg-white: #fff;
  --bg-nav: rgba(255, 255, 255, 0.92);
  --border-color: #e8e8e8;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-nav: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --cdn: https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao/desktop_online_web/static/image;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* 非官网醒目标识顶栏 */
.site-disclaimer {
  position: relative;
  z-index: 1001;
  padding: 12px 20px;
  background: linear-gradient(90deg, #1a1f36 0%, #2d2468 50%, #1a1f36 100%);
  color: #e8ecff;
  font-size: 13px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-disclaimer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
}

.official-strip-text .inline-code,
.site-disclaimer .inline-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.site-disclaimer strong {
  flex-shrink: 0;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 87, 115, 0.25);
  color: #ffb4c0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-disclaimer a {
  color: #b8c7ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-disclaimer a:hover {
  color: #fff;
}

/* 存在顶栏时，固定导航下移避免与声明条重叠 */
body:has(.site-disclaimer) .nav-wrapper {
  top: 52px;
}

body:has(.site-disclaimer) .hero,
body:has(.site-disclaimer) .land-hero {
  padding-top: 120px;
}

body:has(.site-disclaimer) .page-hero {
  padding-top: 110px;
}

/* 首页编辑/杂志风标题强调 */
.hero--editorial h1 b {
  font-weight: 800;
  color: var(--text-primary);
}

/* 官网 CDN 示意图栅格展示 */
.cdn-gallery-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

.cdn-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cdn-gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cdn-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(51, 112, 255, 0.15);
}

.cdn-gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.cdn-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
  vertical-align: middle;
}

.cdn-gallery-item--large img {
  min-height: 280px;
}

/* 小图标、头像类素材：留白居中，避免裁切 */
.cdn-gallery-item--logo img {
  object-fit: contain;
  padding: 20px;
  background: linear-gradient(180deg, #f8faff, #eef3ff);
  min-height: 120px;
}

.cdn-gallery-item figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, #fff, #f8faff);
}

.footer--guide .footer-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer--guide .footer-info a {
  color: #7eb0ff;
  text-decoration: underline;
}

.footer--guide .footer-info a:hover {
  color: #fff;
}

/* 页面氛围光晕（与豆包官网清爽科技感呼应） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(51, 112, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(107, 92, 255, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 70%, rgba(51, 112, 255, 0.06), transparent 45%);
}

/* ========== NAV ========== */
.nav-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 8px 8px 8px 16px;
  box-shadow: var(--shadow-nav);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-right: 8px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.nav-links a.active {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
  margin-left: 4px;
}

.nav-download:hover {
  background: var(--blue-hover);
}

/* ========== 分栏首屏（参照官网左右布局） ========== */
.land-hero {
  padding: 100px 24px 56px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.land-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px 40px;
  align-items: center;
}

.land-hero-copy {
  text-align: left;
}

.land-hero-copy .hero-kicker {
  margin-bottom: 16px;
}

.land-hero-copy h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.land-hero-copy h1 .gradient-word {
  background: linear-gradient(105deg, var(--blue-primary) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.land-hero-lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.land-hero-lead .inline-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(51, 112, 255, 0.1);
}

.land-hero-bullets {
  margin: 0 0 22px;
  padding-left: 1.2em;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.land-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.land-hero-note {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.land-hero-note a {
  color: var(--blue-primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 112, 255, 0.35);
}

.land-hero-visual-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  background: var(--bg-white);
}

.land-hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.land-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-end;
}

.land-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.land-chip img {
  border-radius: 50%;
}

/* Bento 能力矩阵 */
.bento-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.section-header--left {
  text-align: left;
  margin-bottom: 28px;
}

.section-header--left p {
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
}

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

.bento-card {
  grid-column: span 1;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(51, 112, 255, 0.12);
}

.bento-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

.bento-card--alt {
  flex-direction: row-reverse;
}

.bento-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bento-card:not(.bento-card--wide) img {
  flex: 1;
  min-height: 160px;
}

.bento-text {
  padding: 22px 22px 18px;
}

.bento-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 8px;
}

.bento-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.bento-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.bento-img-wrap {
  flex: 1;
  min-width: 45%;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8faff, #eef3ff);
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

/* 信任条 */
.trust-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(232, 240, 255, 0.9));
  border: 1px solid rgba(51, 112, 255, 0.15);
}

.trust-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* 场景卡片 */
.scenarios-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 64px;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scenario-card {
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s, transform 0.2s;
}

.scenario-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(51, 112, 255, 0.1);
}

.scenario-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.scenario-card h3 {
  font-size: 17px;
  padding: 18px 20px 8px;
  font-weight: 700;
}

.scenario-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0 20px 20px;
  margin: 0;
}

/* FAQ */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--blue-primary);
  flex-shrink: 0;
}

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

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item p a {
  color: var(--blue-primary);
  font-weight: 500;
}

.faq-item p .inline-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(51, 112, 255, 0.08);
}

/* ========== HERO（旧版居中首屏，子页仍可用） ========== */
.hero {
  text-align: center;
  padding: 140px 20px 48px;
  background: transparent;
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-primary);
  background: linear-gradient(135deg, rgba(51, 112, 255, 0.12), rgba(107, 92, 255, 0.1));
  border: 1px solid rgba(51, 112, 255, 0.2);
  margin-bottom: 20px;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(51, 112, 255, 0.2);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.92); }
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.hero h1 .gradient-word {
  background: linear-gradient(105deg, var(--blue-primary) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* 首屏品牌徽章：Logo + 角色头像 + 多尺寸图标 */
.hero-brand-panel {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.hero-brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-bottom: 14px;
}

.hero-brand-logo {
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(51, 112, 255, 0.12);
}

.hero-brand-logo--mark {
  border-radius: 50%;
}

.hero-brand-logo--avatar {
  border-radius: 50%;
  border: 3px solid rgba(51, 112, 255, 0.2);
}

.hero-brand-logo--favicon {
  border-radius: 12px;
}

.hero-brand-caption {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.hero-brand-caption .inline-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(51, 112, 255, 0.08);
}

.hero-brand-caption a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 112, 255, 0.35);
}

.hero-brand-caption a:hover {
  border-bottom-color: var(--blue-primary);
}

/* 官网 meta 原文对照卡 */
.official-meta-section {
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.official-meta-card {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff 0%, #f4f7ff 100%);
  border: 1px solid rgba(51, 112, 255, 0.22);
  box-shadow: var(--shadow-card);
}

.official-meta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.official-meta-note {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.official-meta-note .inline-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(51, 112, 255, 0.08);
}

.official-meta-quote {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue-primary);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.75;
}

.official-meta-keywords {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.official-meta-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(105deg, var(--blue-primary), var(--accent-violet));
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.official-meta-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.hero-pill {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.btn-outline-doubao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-primary);
  background: var(--bg-white);
  border: 1.5px solid rgba(51, 112, 255, 0.45);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline-doubao:hover {
  background: var(--blue-soft);
  border-color: var(--blue-primary);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 13px;
  color: var(--text-light);
}

.cta-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-desc a {
  color: var(--blue-primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 112, 255, 0.35);
}

.cta-desc a:hover {
  border-bottom-color: var(--blue-primary);
}

/* 对接 msn.js：带 js-download、data-platform 的下载入口 */
.dl-btn {
  cursor: pointer;
  text-decoration: none;
}

.dl-btn:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}

.dl-item-info {
  margin-bottom: 14px;
}

.dl-item-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.dl-item-meta {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.land-hero-download {
  margin-bottom: 12px;
}

.land-hero-download .land-hero-actions {
  margin-bottom: 0;
}

.cta-download-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 400px;
  margin: 0 auto;
}

.cta-download-block .dl-item-info {
  text-align: center;
  margin-bottom: 0;
}

.nav-download.dl-btn {
  gap: 8px;
}

.nav-download.dl-btn i {
  font-size: 14px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(51, 112, 255, 0.3);
}

.btn-download:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(51, 112, 255, 0.4);
}

.btn-download .apple-icon,
.btn-download .win-icon {
  width: 20px;
  height: 20px;
}

.hero-web-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-web-link:hover {
  color: var(--text-primary);
}

.hero-web-link .arrow {
  transition: transform 0.2s;
}

.hero-web-link:hover .arrow {
  transform: translateX(3px);
}

/* ========== 官网直达条 ========== */
.official-strip {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 24px;
}

.official-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(232, 240, 255, 0.85));
  border: 1px solid rgba(51, 112, 255, 0.18);
  box-shadow: var(--shadow-card);
}

.official-strip-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.official-strip-text span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.official-strip-text a {
  color: var(--blue-primary);
  font-weight: 500;
  text-decoration: none;
}

.official-strip-text a:hover {
  text-decoration: underline;
}

.official-strip a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(105deg, var(--blue-primary), var(--accent-violet));
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.official-strip a:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* ========== 能力亮点网格 ========== */
.highlights-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.highlights-section .section-header h2 {
  font-size: clamp(26px, 4vw, 36px);
}

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

.highlight-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}

.highlight-card:hover {
  border-color: rgba(51, 112, 255, 0.35);
  box-shadow: 0 8px 28px rgba(51, 112, 255, 0.12);
  transform: translateY(-2px);
}

.highlight-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.highlight-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.highlight-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 10px;
}

/* ========== 一句话亮相 ========== */
.voice-band {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.voice-band blockquote {
  margin: 0;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue-primary);
  background: var(--bg-white);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.65;
  box-shadow: var(--shadow-card);
}

.voice-band cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ========== APP MOCKUP ========== */
.app-mockup-section {
  padding: 12px 20px 56px;
  display: flex;
  justify-content: center;
}

.app-mockup-img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== FEATURES TABS ========== */
.features-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-white);
  border-radius: 50px;
  font-size: 15px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.tab-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}

.tab-btn.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
  font-weight: 500;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FEATURE CARDS ========== */
.feature-card {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 280px;
}

.feature-number {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-text h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.feature-visual {
  flex: 1.2;
  min-width: 280px;
}

.feature-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

/* ========== BOTTOM CTA ========== */
.cta-section {
  text-align: center;
  padding: 80px 20px 60px;
  background: var(--bg-page);
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 32px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 16px;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-info span {
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* ========== PAGE HERO (sub-pages) ========== */
.page-hero {
  text-align: center;
  padding: 130px 20px 50px;
  background: var(--bg-page);
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== CHANGELOG ========== */
.changelog-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.changelog-item {
  position: relative;
  padding: 32px 36px;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.changelog-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 40px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: 3px solid var(--bg-page);
}

.changelog-timeline {
  position: relative;
  padding-left: 40px;
}

.changelog-timeline::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.changelog-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.version-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.version-date {
  font-size: 13px;
  color: var(--text-light);
}

.changelog-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.change-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.change-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.change-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.change-tag.new {
  background: #e8f5e9;
  color: #2e7d32;
}

.change-tag.improve {
  background: #e3f2fd;
  color: #1565c0;
}

.change-tag.fix {
  background: #fff3e0;
  color: #e65100;
}

/* ========== ARTICLES ========== */
.articles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.article-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  align-self: flex-start;
}

.article-tag.guide {
  background: #e3f2fd;
  color: #1565c0;
}

.article-tag.tips {
  background: #e8f5e9;
  color: #2e7d32;
}

.article-tag.news {
  background: #fce4ec;
  color: #c62828;
}

.article-tag.deep {
  background: #f3e5f5;
  color: #6a1b9a;
}

.article-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.article-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .land-hero-grid {
    grid-template-columns: 1fr;
  }

  .land-hero-copy {
    text-align: center;
  }

  .land-hero-actions {
    justify-content: center;
  }

  .land-hero-bullets {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .land-hero-chips {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--wide,
  .bento-card--alt {
    grid-column: span 1;
    flex-direction: column;
  }

  .bento-img-wrap {
    min-height: 200px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .section-header--left {
    text-align: center;
  }

  .section-header--left p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .cdn-gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .feature-card {
    flex-direction: column !important;
    gap: 30px;
    padding: 24px;
  }

  .feature-text,
  .feature-visual {
    min-width: unset;
    width: 100%;
  }

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

  .nav-links {
    display: none;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px 32px;
  }

  .official-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .changelog-timeline {
    padding-left: 30px;
  }

  .changelog-item {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }

  .footer-info {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cdn-gallery {
    grid-template-columns: 1fr;
  }

  .cdn-gallery-item--large {
    grid-column: span 1;
  }

  body:has(.site-disclaimer) .nav-wrapper {
    top: 44px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .btn-download {
    padding: 12px 28px;
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .articles-grid {
    gap: 16px;
  }
}
