/* ===================================================
   花智云 LP — lp.css
   新色系：象牙白 × 深森绿 × 藕粉
   参考：Bloom & Wild / Afloral / 日系花艺美学
   主色 --sage    深森绿  #2D4A3E  → CTA、品牌
   辅色 --blush   藕粉    #C8A09A  → 点缀、强调
   底色 --ivory   象牙白  #F7F3EE  → 页面背景
   文字 --ink     墨色    #1C1C1E  → 主文字
   =================================================== */

:root {
  /* ── 核心品牌色 ── */
  --sage:         #2D4A3E;   /* 深森绿 — 主CTA、品牌色 */
  --sage-mid:     #4A7A68;   /* 中绿 — hover状态 */
  --sage-light:   #8BB5A6;   /* 浅绿 — 辅助 */
  --sage-pale:    #EAF2EF;   /* 极浅绿 — 背景/hover */
  --sage-border:  rgba(45,74,62,0.14);

  --blush:        #C8A09A;   /* 藕粉 — 点缀强调 */
  --blush-dark:   #A67870;   /* 深藕粉 */
  --blush-pale:   #F5EDEB;   /* 极浅藕粉 — 卡片背景 */
  --blush-border: rgba(200,160,154,0.22);

  --gold:         #B8960C;   /* 暖金 — 徽章/会员 */
  --gold-pale:    #FDF8E7;

  /* ── 中性色 ── */
  --ivory:        #F7F3EE;   /* 象牙白 — 页面主背景 */
  --ivory-dark:   #EDE7DE;   /* 深象牙 — 分区背景 */
  --white:        #FFFFFF;
  --ink:          #1C1C1E;   /* 墨色 — 主文字 */
  --ink-mid:      #3D3D3F;   /* 中墨 */
  --muted:        #6E6E73;   /* 次要文字 */
  --muted-light:  #AEAEB2;   /* 禁用/placeholder */
  --line:         rgba(28,28,30,0.10); /* 分割线 */

  /* ── 功能色 ── */
  --green-ok:     #2D6A4F;
  --red-err:      #C0392B;

  /* ── 组合 ── */
  --bg:           var(--ivory);
  --card-bg:      var(--white);
  --card-shadow:  0 2px 16px rgba(28,28,30,0.07), 0 1px 4px rgba(28,28,30,0.05);
  --card-shadow-hover: 0 8px 32px rgba(45,74,62,0.14), 0 2px 8px rgba(28,28,30,0.06);

  /* ── 间距 & 形状 ── */
  --radius-xl:    24px;
  --radius-lg:    18px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --radius-pill:  999px;
  --nav-h:        64px;
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Georgia", "Times New Roman", ui-serif, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* sans-serif 用于 UI 元素 */
nav, button, input, select, textarea, label, .btn, .tag-pill,
.section-kicker, .lp-hero__kicker, .lp-nav__links, .feature-card__badge,
.gallery-card__meta, .video-card__links, .lp-footer__col-title,
.lp-footer__links, .lp-cta__methods {
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── NAV ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(247,243,238,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.lp-nav.scrolled { box-shadow: 0 1px 20px rgba(45,74,62,0.10); }
.lp-nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 17px; letter-spacing: 0.2px;
  color: var(--sage);
}
.lp-nav__logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.lp-nav__links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.lp-nav__links a {
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; letter-spacing: 0.1px; color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.lp-nav__links a:hover { color: var(--sage); background: var(--sage-pale); }
.lp-nav__ctas { display: flex; align-items: center; gap: 8px; }
.lp-nav__lang {
  font-size: 12px; padding: 6px 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); color: var(--muted); cursor: pointer;
  background: transparent; transition: border-color var(--transition);
}
.lp-nav__lang:hover { border-color: var(--sage); color: var(--sage); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 24px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition);
  white-space: nowrap; text-decoration: none; letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(45,74,62,0.22);
}
.btn-primary:hover {
  background: var(--sage-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,74,62,0.30);
}
.btn-outline {
  background: var(--white); color: var(--sage);
  border: 1.5px solid var(--sage-border);
}
.btn-outline:hover { border-color: var(--sage); background: var(--sage-pale); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--ivory-dark); color: var(--ink); border-color: transparent; }
.btn-blush {
  background: var(--blush); color: var(--white);
  box-shadow: 0 2px 12px rgba(200,160,154,0.25);
}
.btn-blush:hover { background: var(--blush-dark); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 12.5px; }

/* ── HERO ── */
.lp-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 88px;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
/* 大面积留白纹理感背景装饰 */
.lp-hero__bg-blur {
  position: absolute; top: -60px; right: -60px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,154,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.lp-hero__bg-blur2 {
  position: absolute; bottom: 0; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,74,62,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-hero__kicker {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale); border: 1px solid var(--sage-border);
  padding: 5px 13px; border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.lp-hero__title {
  font-family: "Georgia", "Times New Roman", ui-serif, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.2px;
  color: var(--ink); margin-bottom: 20px;
}
.lp-hero__title em {
  font-style: italic;
  color: var(--sage);
}
.lp-hero__desc {
  font-size: 16px; color: var(--muted); line-height: 1.78;
  margin-bottom: 34px; max-width: 460px;
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.lp-hero__stats {
  display: flex; flex-wrap: wrap; gap: 24px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.lp-hero__stat-num {
  font-family: "Georgia", ui-serif, serif;
  font-size: 22px; font-weight: 700; color: var(--sage); line-height: 1;
}
.lp-hero__stat-label {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.2px;
}

/* Hero 视频面板 */
.lp-hero__video-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,28,30,0.14);
  aspect-ratio: 16/10;
  background: var(--ink);
  border: 1px solid var(--line);
}
.lp-hero__video-wrap video,
.lp-hero__video-wrap .video-placeholder {
  width: 100%; height: 100%; object-fit: cover;
}
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, #1C1C1E 0%, #2D4A3E 100%);
  color: rgba(255,255,255,0.55); font-size: 13px;
  font-family: ui-sans-serif, sans-serif;
}
.video-placeholder__icon { font-size: 52px; }
.lp-hero__play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(247,243,238,0.15); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(247,243,238,0.30);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  color: white; font-size: 20px;
}
.lp-hero__play-btn:hover {
  background: var(--ivory); color: var(--sage);
  transform: translate(-50%, -50%) scale(1.08);
  border-color: var(--ivory);
}
.lp-hero__video-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(28,28,30,0.65); backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9); font-size: 11.5px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 6px;
  font-family: ui-sans-serif, sans-serif; letter-spacing: 0.2px;
}
.lp-hero__video-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ── SECTION 通用 ── */
.lp-section { padding: 88px 0; }
.lp-section--alt { background: var(--ivory-dark); }
.lp-section--dark { background: var(--sage); color: var(--ivory); }
.section-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--blush-dark); margin-bottom: 12px;
}
.section-title {
  font-family: "Georgia", "Times New Roman", ui-serif, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.1px;
  margin-bottom: 14px; color: var(--ink);
}
.lp-section--dark .section-title { color: var(--ivory); }
.section-title em {
  font-style: italic; color: var(--sage);
}
.lp-section--dark .section-title em { color: var(--blush); }
.section-desc {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.76;
}
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── GALLERY ── */
.lp-gallery__tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.gallery-tab {
  padding: 8px 18px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--line);
  background: var(--white); color: var(--muted);
  transition: all var(--transition); letter-spacing: 0.1px;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--sage); color: var(--white); border-color: var(--sage);
  box-shadow: 0 2px 10px rgba(45,74,62,0.22);
}
.lp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.gallery-card__visual {
  position: relative; overflow: hidden;
}
.gallery-card__imgs {
  display: grid; grid-template-columns: 1fr 1fr;
}
.gallery-card__img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--ivory-dark);
}
.gallery-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card__img-wrap img { transform: scale(1.04); }
.gallery-card__img-label {
  position: absolute; bottom: 7px; left: 7px;
  background: rgba(28,28,30,0.62); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92); font-size: 10px; font-weight: 500;
  padding: 3px 8px; border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}
.gallery-card__arrow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); box-shadow: 0 2px 10px rgba(28,28,30,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--sage); z-index: 2;
}
.gallery-card__body { padding: 16px; }
.gallery-card__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 14px; margin-bottom: 5px; color: var(--ink);
}
.gallery-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
}
.gallery-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.tag-pill {
  font-size: 11px; padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--sage-pale); color: var(--sage);
  border: 1px solid var(--sage-border);
}
.gallery-card__actions {
  display: flex; gap: 7px;
}

/* ── VIDEOS ── */
.lp-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.video-card__thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--sage) 100%);
  cursor: pointer;
}
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,30,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.video-card:hover .video-card__overlay { background: rgba(28,28,30,0.10); }
.video-card__play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.20); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
  transition: all var(--transition);
}
.video-card:hover .video-card__play {
  background: var(--blush); border-color: var(--blush);
  transform: scale(1.1);
}
.video-card__duration {
  position: absolute; bottom: 8px; right: 10px;
  background: rgba(28,28,30,0.65); color: white;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
}
.video-card__body { padding: 16px; }
.video-card__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 14px; margin-bottom: 5px; line-height: 1.4; color: var(--ink);
}
.video-card__desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.video-card__links { display: flex; gap: 8px; flex-wrap: wrap; }
.video-ext-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--muted); background: var(--white);
  transition: all var(--transition);
}
.video-ext-link:hover { border-color: var(--blush); color: var(--sage); background: var(--blush-pale); }
.video-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }

/* ── HOW IT WORKS ── */
.lp-how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.lp-how__steps::before {
  content: '';
  position: absolute; top: 40px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--sage-border) 0%, var(--blush-border) 100%);
  opacity: 0.6;
}
.how-step {
  text-align: center; position: relative;
}
.how-step__num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: var(--ivory-dark);
  border: 2px solid var(--sage-border);
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.how-step:hover .how-step__num {
  background: var(--sage); border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(45,74,62,0.28);
}
.how-step__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--ink);
}
.how-step__desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FEATURES ── */
.lp-features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-border);
  box-shadow: var(--card-shadow-hover);
}
.feature-card__icon {
  font-size: 36px; margin-bottom: 14px;
}
.feature-card__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--ink);
}
.feature-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.feature-card__badge {
  display: inline-block; margin-top: 12px;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: var(--radius-pill);
  background: rgba(52,211,153,0.10); color: #047857;
  border: 1px solid rgba(52,211,153,0.18);
}

/* ── TESTIMONIALS ── */
.lp-testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px; box-shadow: var(--card-shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card__quote {
  font-size: 14px; line-height: 1.72; color: var(--text);
  position: relative; padding-left: 18px;
}
.testimonial-card__quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -4px;
  font-size: 36px; line-height: 1; color: var(--blush);
  font-family: Georgia, serif;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testimonial-card__role { font-size: 12px; color: var(--muted); }
.testimonial-card__sns-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--sage); margin-top: 2px;
  transition: opacity var(--transition);
}
.testimonial-card__sns-link:hover { opacity: 0.75; }

/* ── SNS BAR ── */
.lp-sns {
  background: linear-gradient(160deg, var(--ink) 0%, var(--sage) 100%);
  padding: 60px 0;
}
.lp-sns__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: 22px; font-weight: 700; color: white;
  text-align: center; margin-bottom: 10px;
}
.lp-sns__desc {
  text-align: center; font-size: 14px; color: rgba(255,255,255,0.60);
  margin-bottom: 40px;
}
.lp-sns__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: 840px; margin: 0 auto 40px;
}
.sns-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.sns-card:hover {
  background: rgba(200,160,154,0.25); border-color: rgba(200,160,154,0.50);
  transform: translateY(-3px);
}
.sns-card__icon { font-size: 28px; }
.sns-card__label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); }

/* WX QR 弹窗 */
.lp-sns__qr-hint {
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.50);
}
#wechatQrModal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(28,28,30,0.60); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
#wechatQrModal.open { display: flex; }
.qr-modal-box {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; max-width: 300px; width: 90%;
  text-align: center; position: relative;
}
.qr-modal-box__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted);
}
.qr-modal-box__placeholder {
  width: 200px; height: 200px; margin: 0 auto 16px;
  background: var(--sage-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
}
.qr-modal-box__title { font-family: Georgia, serif; font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.qr-modal-box__desc { font-size: 13px; color: var(--muted); }

/* ── CTA SECTION ── */
.lp-cta {
  background: linear-gradient(160deg, var(--sage) 0%, #1e3a30 60%, var(--ink) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(200,160,154,0.10);
  pointer-events: none;
}
.lp-cta__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: white; line-height: 1.2;
  margin-bottom: 14px; position: relative;
}
.lp-cta__desc {
  font-size: 16px; color: rgba(255,255,255,0.80);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}
.lp-cta__form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto 24px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border-radius: var(--radius-pill); padding: 6px 6px 6px 20px;
  border: 1px solid rgba(255,255,255,0.22);
}
.lp-cta__input {
  flex: 1; background: none; border: none; outline: none;
  color: white; font-size: 14px; min-width: 0;
}
.lp-cta__input::placeholder { color: rgba(255,255,255,0.50); }
.lp-cta__form .btn-white {
  background: var(--ivory); color: var(--sage);
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: all var(--transition);
}
.lp-cta__form .btn-white:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  background: white;
}
.lp-cta__methods {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.60); flex-wrap: wrap;
}
.lp-cta__method-sep { opacity: 0.4; }
.lp-cta__or-login {
  margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.60);
}
.lp-cta__or-login a { color: rgba(255,255,255,0.90); text-decoration: underline; }

/* ── FOOTER ── */
.lp-footer {
  background: var(--ink); color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}
.lp-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.lp-footer__brand {
  font-family: "Georgia", ui-serif, serif;
  font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px;
}
.lp-footer__tagline { font-size: 13px; line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.lp-footer__sns-row { display: flex; gap: 10px; }
.footer-sns-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.footer-sns-icon:hover { background: rgba(200,160,154,0.28); border-color: rgba(200,160,154,0.45); }
.lp-footer__col-title {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.lp-footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.lp-footer__links a {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.lp-footer__links a:hover { color: var(--blush); }
.lp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px;
}
.lp-footer__seo-keywords {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px; color: rgba(255,255,255,0.20); line-height: 1.8;
}

/* ── REGISTER MODAL ── */
.reg-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(28,28,30,0.55); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.reg-modal-overlay.open { display: flex; }
.reg-modal {
  background: white; border-radius: var(--radius-lg);
  width: 90%; max-width: 440px;
  padding: 36px 32px; position: relative;
  box-shadow: 0 30px 80px rgba(28,28,30,0.30);
  animation: modalIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.reg-modal__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted);
  line-height: 1; transition: color var(--transition);
}
.reg-modal__close:hover { color: var(--text); }
.reg-modal__logo { font-size: 28px; text-align: center; margin-bottom: 8px; }
.reg-modal__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 4px; color: var(--ink);
}
.reg-modal__subtitle { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 24px; }
.reg-modal__hint {
  font-size: 12px; color: var(--sage); font-weight: 500;
  text-align: center; background: var(--sage-pale);
  border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 22px;
  border: 1px solid var(--sage-border);
}
.reg-form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 5px; color: var(--text); }
.reg-form input {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font-size: 14px;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 14px; background: var(--white); color: var(--ink);
}
.reg-form input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(45,74,62,0.08); }
.reg-form__note {
  font-size: 12px; color: var(--muted); margin-top: -10px; margin-bottom: 14px;
  padding-left: 2px; line-height: 1.5;
}
.reg-form .btn-primary { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }
.reg-modal__privacy {
  font-size: 11.5px; color: var(--muted); text-align: center;
  margin-top: 12px; line-height: 1.6;
}
.reg-modal__privacy a { color: var(--sage); text-decoration: underline; }
.reg-modal__divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); margin: 16px 0;
}
.reg-modal__divider::before, .reg-modal__divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.reg-modal__wx-btn {
  width: 100%; padding: 11px; border-radius: var(--radius-sm);
  background: #07C160; color: white; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--transition);
}
.reg-modal__wx-btn:hover { background: #06a050; }
.reg-modal__wx-privacy {
  font-size: 11px; color: var(--muted); text-align: center;
  margin-top: 8px; line-height: 1.5;
}
.reg-modal__wx-privacy a { color: var(--sage); text-decoration: underline; }
.reg-modal__login { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }
.reg-modal__login a { color: var(--sage); font-weight: 600; }

/* ── VIDEO LIGHTBOX ── */
.video-lightbox {
  display: none; position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.video-lightbox.open { display: flex; }
.video-lightbox__wrap {
  position: relative; width: 90%; max-width: 900px;
  aspect-ratio: 16/9;
}
.video-lightbox__iframe {
  width: 100%; height: 100%; border-radius: var(--radius-lg); border: none;
}
.video-lightbox__close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: white; font-size: 28px; cursor: pointer;
  transition: opacity var(--transition);
}
.video-lightbox__close:hover { opacity: 0.7; }
.video-lightbox__local {
  width: 100%; height: 100%; border-radius: var(--radius-lg); outline: none;
}

/* ── IMAGE LIGHTBOX ── */
.img-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 260;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: imgLbFadeIn 0.22s ease;
}
.img-lightbox.open { display: flex; }
@keyframes imgLbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 关闭按钮 */
.img-lightbox__close {
  position: fixed; top: 18px; right: 22px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; transition: background 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.img-lightbox__close:hover { background: rgba(255,255,255,0.26); }

/* 左右翻页按钮 */
.img-lightbox__nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 64px;
  background: rgba(255,255,255,0.10); border: none;
  color: #fff; font-size: 36px; line-height: 1;
  cursor: pointer; border-radius: 8px;
  transition: background 0.18s, opacity 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.img-lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.img-lightbox__nav--prev { left: 12px; }
.img-lightbox__nav--next { right: 12px; }
.img-lightbox__nav[disabled] { opacity: 0.2; pointer-events: none; }

/* 主图区 */
.img-lightbox__stage {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 100%; min-height: 0;
  padding: 56px 80px 12px;
  box-sizing: border-box;
}
.img-lightbox__stage img {
  max-width: 100%; max-height: calc(100vh - 180px);
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.18s, transform 0.18s;
  cursor: zoom-in;
  display: block;
}
.img-lightbox__stage img.zoomed {
  cursor: zoom-out;
  transform: scale(1.7);
  transform-origin: var(--zoom-ox, 50%) var(--zoom-oy, 50%);
}
.img-lightbox__caption {
  margin-top: 12px; font-size: 13px;
  color: rgba(255,255,255,0.55); text-align: center;
  min-height: 20px;
}

/* 缩略图条 */
.img-lightbox__strip {
  display: flex; gap: 8px; padding: 10px 16px 20px;
  overflow-x: auto; max-width: 100%;
  scrollbar-width: none;
}
.img-lightbox__strip::-webkit-scrollbar { display: none; }
.img-lightbox__strip-thumb {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; opacity: 0.55;
  transition: opacity 0.18s, border-color 0.18s;
}
.img-lightbox__strip-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-lightbox__strip-thumb:hover { opacity: 0.85; }
.img-lightbox__strip-thumb.active {
  border-color: var(--blush);
  opacity: 1;
}

/* Gallery 卡片图片可点击 */
.gallery-card__img-wrap img { cursor: zoom-in; }
/* Mosaic 图片可点击 */
.lp-mosaic__item img { cursor: zoom-in; }
/* BA 滑块图片可点击 */
.ba-slider__img { cursor: zoom-in; }

@media (max-width: 640px) {
  .img-lightbox__stage { padding: 52px 48px 8px; }
  .img-lightbox__nav { width: 36px; font-size: 26px; }
  .img-lightbox__nav--prev { left: 4px; }
  .img-lightbox__nav--next { right: 4px; }
}

/* ── BG STYLE SWITCHER ── */
.bg-switcher {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; align-items: center;
}
.bg-switcher__label { font-size: 13px; color: var(--muted); margin-right: 4px; }
.bg-chip {
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--line);
  background: var(--white); color: var(--muted);
  transition: all var(--transition);
}
.bg-chip.active, .bg-chip:hover {
  border-color: var(--sage); color: var(--sage); background: var(--sage-pale);
}

/* ── TOAST ── */
.lp-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: white; padding: 12px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; z-index: 400;
  opacity: 0; transition: all 0.3s ease; pointer-events: none; white-space: nowrap;
}
.lp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lp-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-sns__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-how__steps { grid-template-columns: 1fr; }
  .lp-how__steps::before { display: none; }
  .lp-videos__grid { grid-template-columns: 1fr; }
  .lp-gallery__grid { grid-template-columns: 1fr; }
  .lp-features__grid { grid-template-columns: 1fr; }
  .lp-testimonials__grid { grid-template-columns: 1fr; }
  .lp-sns__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr; }
  .lp-nav__links { display: none; }
}
@media (max-width: 480px) {
  .lp-hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 48px; }
  .lp-section { padding: 52px 0; }
  .lp-cta__form { flex-direction: column; border-radius: var(--radius-lg); padding: 14px; }
  .lp-cta__input { padding: 4px 0; }
  .lp-cta__form .btn-white { border-radius: var(--radius-sm); }
}

/* ================================================================
   ✦ MOTION & ANIMATION SYSTEM
   参考: Bloom&Wild scroll-reveal / Linear.app entrance animations
   ================================================================ */

/* ── Scroll Reveal (JS 动态加 .revealed 类) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* 交错延迟 */
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.42s; }
.reveal-delay-5 { transition-delay: 0.54s; }

/* ── Hero 视差图片 ── */
.lp-hero__photo-reel {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(28,28,30,0.22);
}
.lp-hero__photo-reel img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.lp-hero__photo-reel img.active { opacity: 1; }
.lp-hero__photo-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.lp-hero__photo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.45); transition: all 0.3s ease;
  cursor: pointer;
}
.lp-hero__photo-dot.active {
  background: white; width: 18px; border-radius: 3px;
}
/* 浮动徽章 */
.lp-hero__badge-float {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(28,28,30,0.12);
  animation: floatBadge 3.5s ease-in-out infinite;
}
.lp-hero__badge-float:nth-child(2) { animation-delay: 1.2s; }
.lp-hero__badge-float--tl { top: 18px; left: -24px; }
.lp-hero__badge-float--br { bottom: 60px; right: -24px; }
.lp-hero__badge-float__icon { font-size: 22px; }
.lp-hero__badge-float__text strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.lp-hero__badge-float__text span { font-size: 11px; color: var(--muted); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── 无限滚动 Ticker ── */
.lp-ticker {
  background: var(--sage); color: white;
  padding: 11px 0; overflow: hidden;
  white-space: nowrap;
}
.lp-ticker__track {
  display: inline-flex; gap: 0;
  animation: ticker 28s linear infinite;
}
.lp-ticker__track:hover { animation-play-state: paused; }
.lp-ticker__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1px; opacity: 0.90;
}
.lp-ticker__item::after {
  content: '✦'; font-size: 9px; opacity: 0.55; margin-left: 28px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 数字计数器 ── */
.stat-num {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--sage);
  line-height: 1;
  display: inline-block;
}
.lp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; margin: 48px 0;
}
.lp-stat {
  background: var(--white);
  padding: 32px 24px; text-align: center;
}
.lp-stat__label {
  font-size: 12.5px; color: var(--muted); margin-top: 6px; letter-spacing: 0.2px;
}

/* ── Before / After 交互式 Slider ── */
.lp-demo-section {
  background: var(--ivory-dark); padding: 80px 0;
}
.lp-demo__title-area { text-align: center; margin-bottom: 48px; }
.lp-demo__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
}
.lp-demo__left { position: relative; }
.lp-demo__right {
  display: flex; flex-direction: column; gap: 20px; justify-content: center;
}
/* Slider 组件 */
.ba-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 16px 48px rgba(28,28,30,0.18);
}
.ba-slider__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ba-slider__img--after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.02s linear;
}
.ba-slider__divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 3px; background: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; pointer-events: none;
}
.ba-slider__handle {
  width: 40px; height: 40px; border-radius: 50%;
  background: white; box-shadow: 0 2px 14px rgba(28,28,30,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 11; color: var(--sage);
}
.ba-slider__label {
  position: absolute; bottom: 12px;
  background: rgba(28,28,30,0.65); backdrop-filter: blur(6px);
  color: white; font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: var(--radius-pill); z-index: 5;
}
.ba-slider__label--left  { left: 12px; }
.ba-slider__label--right { right: 12px; }
/* 缩略图选择器 */
.ba-thumbs {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.ba-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2.5px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
}
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ba-thumb.active { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(45,74,62,0.18); }
.ba-thumb:hover:not(.active) { border-color: var(--blush); }
/* 右侧说明 */
.lp-demo__feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--line);
  transition: all var(--transition); cursor: pointer;
}
.lp-demo__feature:hover { border-color: var(--sage-border); box-shadow: var(--card-shadow); }
.lp-demo__feature.active { border-color: var(--sage); background: var(--sage-pale); }
.lp-demo__feature__icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.lp-demo__feature__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 4px;
}
.lp-demo__feature__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.lp-demo__cta {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 8px;
}

/* ── 无需注册即可体验的提示标签 ── */
.try-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--sage);
  background: var(--sage-pale); border: 1px solid var(--sage-border);
  padding: 5px 12px; border-radius: var(--radius-pill);
}

/* ── 图片网格 Masonry-like 展示 ── */
.lp-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 8px; border-radius: var(--radius-lg); overflow: hidden;
}
.lp-mosaic__item {
  overflow: hidden; position: relative; cursor: pointer;
}
.lp-mosaic__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.lp-mosaic__item:hover img { transform: scale(1.06); }
.lp-mosaic__item--tall {
  grid-row: span 2;
}
.lp-mosaic__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.55) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.lp-mosaic__item:hover .lp-mosaic__overlay { opacity: 1; }

/* ── Hero 统计区（行内版） ── */
.lp-hero__stats {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
}
.lp-hero__stat { text-align: left; }
.lp-hero__stat__num {
  font-family: "Georgia", ui-serif, serif;
  font-size: 22px; font-weight: 700; color: var(--sage); line-height: 1;
}
.lp-hero__stat__label { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── 动效 Responsive ── */
@media (max-width: 768px) {
  .lp-demo__grid { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-hero__badge-float--tl { left: 6px; top: 10px; }
  .lp-hero__badge-float--br { right: 6px; bottom: 52px; }
  .lp-mosaic { grid-template-rows: repeat(2, 140px); }
}
@media (max-width: 480px) {
  .lp-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 130px); }
  .lp-mosaic__item--tall { grid-row: span 2; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .ba-thumbs { gap: 7px; }
  .ba-thumb { width: 58px; height: 58px; }
}
