﻿
  /* Minimal base referenced by landing page (legacy vars from prototype) */
  :root {
    --coral: #E8896C;
    --coral-deep: #C86A52;
    --ink-soft: #6B5C55;
    --line: #EBE0D1;
    --success: #5AA871;
  }
  * { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
    background: #FBF2E3;
    color: #1A120D;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern", "palt";
  }

  /* ==========   官网落地页（桌面端）   ========== */
  /* ========== Editorial Brand Redesign  ========== */
  /* ============================================ */

  /* ---- Design tokens (landing page scope) ---- */
  .browser {
    --lp-ink: #1A120D;
    --lp-ink-2: #3A2A22;
    --lp-ink-3: #5B4A40;        /* +contrast: 4.8→6.3 on paper */
    --lp-ink-4: #8A7668;        /* +contrast: 2.8→3.4 on paper */

    --lp-paper: #FBF2E3;
    --lp-paper-2: #F3E4CB;
    --lp-cream: #FFF7ED;
    --lp-cream-warm: #FFEBD2;

    --lp-coral: #E8896C;
    --lp-coral-deep: #B54A2C;
    --lp-rust: #A04121;         /* title accent: deeper, less saturated */
    --lp-ember: #8A2F19;
    --lp-cream-glow: #FFE9BF;   /* on-dark accent for warm gradient bg */

    --lp-forest: #2E3E33;
    --lp-forest-2: #405448;
    --lp-moss: #6A8374;

    --lp-gold: #C89558;
    --lp-gold-bright: #E8BF7A;
    --lp-gold-deep: #8E6023;

    --lp-line: #E4D3B8;
    --lp-line-soft: #EEE1CA;

    --lp-shadow-soft: 0 20px 50px -20px rgba(40, 25, 15, 0.18), 0 4px 10px -4px rgba(40, 25, 15, 0.08);
    --lp-shadow-book: 0 50px 90px -30px rgba(30, 20, 12, 0.45),
                      0 20px 40px -20px rgba(30, 20, 12, 0.25),
                      0 4px 8px rgba(30, 20, 12, 0.12);

    --lp-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
    --lp-sans: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
    --lp-mono: "SF Mono", "JetBrains Mono", ui-monospace, monospace;

    width: 100%; margin: 0;
    background: var(--lp-paper);
    color: var(--lp-ink);
  }
  html, body { overflow-x: clip; }
  html { scroll-behavior: smooth; scroll-padding-top: 76px; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  :focus-visible { outline: 2px solid var(--lp-coral-deep, #B54A2C); outline-offset: 3px; border-radius: 3px; }
  section[id] { scroll-margin-top: 76px; }

  /* Production: sticky nav
   *
   * The nav lives inside `.browser` (max-width 1400px, centered), so a
   * plain background would stop at 1400px and leave the paper outside
   * the container visibly bare on wide monitors. To get an edge-to-edge
   * bar while keeping the content (logo / menu / CTA) aligned to the
   * 1400px column, we paint the scrolled background on a full-bleed
   * pseudo-element that reaches from viewport edge to viewport edge.
   * Sticky on `.web-nav` (z-index 80) creates a stacking context, so
   * `::before` with z-index:-1 layers cleanly behind the nav's children.
   */
  .web-nav {
    position: sticky; top: 0; z-index: 80;
    transition: box-shadow .25s ease, padding .25s ease, background .25s ease;
  }
  .web-nav::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50vw);
    width: 100vw;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
  }
  .web-nav.scrolled::before {
    opacity: 1;
    background: rgba(251, 242, 227, 0.92);
    box-shadow: 0 2px 24px rgba(43, 33, 28, 0.08);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
  }

  /* Mobile nav hamburger */
  .web-nav .nav-toggle {
    display: none; width: 40px; height: 40px; border: none; background: transparent;
    padding: 8px; cursor: pointer; align-items: center; justify-content: center; border-radius: 8px;
  }
  .web-nav .nav-toggle:hover { background: rgba(181, 74, 44, 0.08); }
  .web-nav .nav-toggle span {
    display: block; width: 20px; height: 1.8px; background: var(--lp-ink);
    position: relative; transition: transform .25s ease, opacity .2s ease;
  }
  .web-nav .nav-toggle span::before,
  .web-nav .nav-toggle span::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1.8px;
    background: var(--lp-ink); transition: transform .25s ease;
  }
  .web-nav .nav-toggle span::before { top: -7px; }
  .web-nav .nav-toggle span::after  { top: 7px; }
  .web-nav.open .nav-toggle span { background: transparent; }
  .web-nav.open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
  .web-nav.open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

  /* Back-to-top */
  .back-to-top {
    position: fixed; right: 24px; bottom: 32px; z-index: 70;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--lp-ink); color: #FFF7ED; border: none;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    box-shadow: 0 6px 18px rgba(30, 20, 12, 0.25);
    opacity: 0; pointer-events: none; transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
  }
  .back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .back-to-top:hover { background: var(--lp-coral-deep); }

  /* Consultation modal */
  .lp-modal {
    position: fixed; inset: 0; z-index: 100;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
    background: rgba(26, 18, 13, 0.55);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    opacity: 0; transition: opacity .25s ease;
  }
  .lp-modal.show { display: flex; opacity: 1; }
  .lp-modal-dialog {
    background: var(--lp-paper); border-radius: 16px;
    width: 100%; max-width: 460px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(43, 33, 28, 0.35);
    transform: translateY(10px) scale(0.98);
    transition: transform .3s ease;
  }
  .lp-modal.show .lp-modal-dialog { transform: translateY(0) scale(1); }
  .lp-modal-head {
    padding: 28px 32px 12px; display: flex; align-items: start; justify-content: space-between; gap: 16px;
  }
  .lp-modal-head h3 {
    font-family: var(--lp-serif); font-size: 24px; margin: 0; color: var(--lp-ink);
    letter-spacing: 0.02em;
  }
  .lp-modal-head .sub {
    display: block; font-family: var(--lp-mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--lp-rust); margin-bottom: 8px;
  }
  .lp-modal-close {
    width: 32px; height: 32px; border: none; background: transparent; cursor: pointer;
    font-size: 22px; color: var(--lp-ink-3); line-height: 1; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .lp-modal-close:hover { background: rgba(30, 20, 12, 0.06); color: var(--lp-ink); }
  .lp-modal-body { padding: 8px 32px 24px; color: var(--lp-ink-3); font-size: 14px; line-height: 1.7; }
  .lp-modal-body p { margin: 0 0 16px; }
  .lp-modal-body .qr {
    display: flex; gap: 16px; align-items: center;
    background: var(--lp-cream); border: 1px solid var(--lp-line);
    padding: 16px; border-radius: 12px; margin-bottom: 18px;
  }
  .lp-modal-body .qr-img {
    width: 96px; height: 96px; flex-shrink: 0; border-radius: 8px;
    background: #fff;
    background-image:
      linear-gradient(45deg, var(--lp-ink) 25%, transparent 25%, transparent 75%, var(--lp-ink) 75%),
      linear-gradient(45deg, var(--lp-ink) 25%, transparent 25%, transparent 75%, var(--lp-ink) 75%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    border: 4px solid #fff;
    box-shadow: inset 0 0 0 1px var(--lp-line);
  }
  .lp-modal-body .qr-txt .t { font-weight: 700; color: var(--lp-ink); font-size: 14px; margin-bottom: 4px; }
  .lp-modal-body .qr-txt .s { font-size: 12px; color: var(--lp-ink-4); line-height: 1.6; }
  .lp-form { display: flex; flex-direction: column; gap: 10px; }
  .lp-form input {
    width: 100%; padding: 12px 14px; border: 1px solid var(--lp-line);
    background: #fff; border-radius: 8px; font-size: 14px; color: var(--lp-ink);
    font-family: inherit; transition: border-color .2s ease;
  }
  .lp-form input:focus { outline: none; border-color: var(--lp-coral-deep); }
  .lp-form button {
    width: 100%; padding: 14px; border: none; border-radius: 8px;
    background: var(--lp-ink); color: var(--lp-cream); font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em; cursor: pointer; transition: background .2s ease;
    font-family: inherit;
  }
  .lp-form button:hover { background: var(--lp-coral-deep); }
  .lp-form select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--lp-line);
    background: #fff; border-radius: 8px; font-size: 14px; color: var(--lp-ink);
    font-family: inherit; appearance: none; -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--lp-ink-4) 50%), linear-gradient(135deg, var(--lp-ink-4) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 32px;
  }
  .lp-form select:focus { outline: none; border-color: var(--lp-coral-deep); }
  .lp-check {
    display: flex; gap: 8px; align-items: flex-start;
    font-size: 12px; color: var(--lp-ink-4); line-height: 1.6;
    padding: 4px 2px 0; cursor: pointer;
  }
  .lp-check input { width: 14px; height: 14px; margin-top: 3px; accent-color: var(--lp-coral-deep); flex-shrink: 0; }
  .lp-form-submit[disabled] { opacity: 0.7; cursor: default; }
  /* Login modal */
  .login-tabs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
    background: var(--lp-cream); border: 1px solid var(--lp-line);
    border-radius: 999px; padding: 4px; margin-bottom: 16px;
  }
  .login-tab {
    border: none; background: transparent; cursor: pointer;
    padding: 9px 0; border-radius: 999px; font-size: 13px;
    color: var(--lp-ink-3); font-family: inherit; font-weight: 600;
    transition: background .2s ease, color .2s ease;
  }
  .login-tab.active { background: var(--lp-ink); color: var(--lp-cream); }
  .login-tab:not(.active):hover { color: var(--lp-coral-deep); }
  .login-pane[hidden] { display: none; }
  .login-code-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
  .login-code-btn {
    border: 1px solid var(--lp-line);
    background: #fff; color: var(--lp-ink);
    padding: 0 16px; border-radius: 8px;
    font-size: 12px; font-weight: 600; cursor: pointer;
    font-family: inherit; white-space: nowrap;
    transition: border-color .2s ease, color .2s ease;
    width: auto;
  }
  .login-code-btn:hover:not([disabled]) { border-color: var(--lp-coral-deep); color: var(--lp-coral-deep); }
  .login-code-btn[disabled] { color: var(--lp-ink-4); cursor: default; }
  .login-alt {
    font-size: 11px; color: var(--lp-ink-4);
    text-align: center; letter-spacing: 0.02em; margin-top: 4px;
  }
  /* Logged-in user menu */
  .user-menu { position: relative; }
  .user-menu-panel {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 200px; background: var(--lp-paper);
    border: 1px solid var(--lp-line); border-radius: 12px;
    box-shadow: 0 12px 32px rgba(43, 33, 28, 0.18);
    padding: 8px; z-index: 90;
    display: none;
  }
  .user-menu.open .user-menu-panel { display: block; }
  .user-menu-panel a, .user-menu-panel button {
    display: block; width: 100%; text-align: left;
    padding: 9px 12px; font-size: 13px; color: var(--lp-ink);
    border: none; background: transparent; cursor: pointer;
    border-radius: 8px; font-family: inherit; text-decoration: none;
  }
  .user-menu-panel a:hover, .user-menu-panel button:hover { background: var(--lp-cream); }
  .user-menu-panel .divider { height: 1px; background: var(--lp-line-soft); margin: 6px 2px; }
  .user-menu-panel .user-info {
    padding: 10px 12px 8px; border-bottom: 1px solid var(--lp-line-soft);
    margin-bottom: 4px;
  }
  .user-menu-panel .user-info .name { font-weight: 700; font-size: 14px; color: var(--lp-ink); }
  .user-menu-panel .user-info .sub { font-size: 11px; color: var(--lp-ink-4); margin-top: 2px; }
  .lp-modal-foot {
    padding: 14px 32px 24px; border-top: 1px solid var(--lp-line-soft);
    font-size: 11px; color: var(--lp-ink-4); letter-spacing: 0.02em;
  }

  @media (max-width: 820px) {
    .web-nav .nav-toggle { display: inline-flex; justify-self: end; }
    .web-nav ul {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--lp-paper); border-bottom: 1px solid var(--lp-line);
      padding: 12px 24px; margin: 0;
    }
    .web-nav.open ul { display: flex !important; }
    .web-nav.open ul li { padding: 12px 0; border-bottom: 1px solid var(--lp-line-soft); }
    .web-nav.open ul li:last-child { border-bottom: none; }
    .back-to-top { right: 16px; bottom: 20px; width: 40px; height: 40px; }
  }
  .browser-bar {
    background: #EDE3D4; padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--line);
  }
  .browser-bar .dots { display: flex; gap: 6px; }
  .browser-bar .dot {
    width: 12px; height: 12px; border-radius: 50%; background: #FFB2A0;
  }
  .browser-bar .dot:nth-child(2) { background: #FFD28A; }
  .browser-bar .dot:nth-child(3) { background: #9ECFBF; }
  .browser-bar .addr {
    flex: 1; background: #fff; border-radius: 8px;
    padding: 6px 14px; font-size: 13px; color: var(--ink-soft);
    font-family: -apple-system, "PingFang SC", monospace;
    border: 1px solid var(--line);
  }
  .browser-bar .addr span.lock { color: var(--success); margin-right: 8px; }
  .browser-bar .gsrc {
    font-size: 12px; color: var(--ink-soft); background: #fff;
    padding: 4px 10px; border-radius: 8px; border: 1px solid var(--line);
  }

  /* ===================================================== */
  /*  Shared editorial primitives                           */
  /* ===================================================== */
  .lp-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--lp-mono);
    font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--lp-rust);
    font-weight: 600;
  }
  .lp-eyebrow::before {
    content: ""; width: 28px; height: 1px; background: currentColor;
  }
  .lp-eyebrow.center { justify-content: center; }
  .lp-eyebrow.on-dark { color: var(--lp-gold-bright); }

  .lp-rule {
    height: 1px; background: var(--lp-line);
    position: relative;
  }
  .lp-rule::after {
    content: ""; position: absolute; left: 50%; top: -3px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lp-gold); transform: translateX(-50%);
  }

  .lp-serif { font-family: var(--lp-serif); }
  .lp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 999px;
    font-family: var(--lp-sans);
    font-size: 15px; font-weight: 600;
    border: none; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .lp-btn-primary {
    background: var(--lp-ink);
    color: var(--lp-cream);
    box-shadow: 0 16px 30px -10px rgba(26, 18, 13, 0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .lp-btn-primary:hover { transform: translateY(-1px); background: var(--lp-coral-deep); }
  .lp-btn-primary .arr { transition: transform .2s ease; }
  .lp-btn-primary:hover .arr { transform: translateX(3px); }
  .lp-btn-ghost {
    background: transparent; color: var(--lp-ink);
    border: 1px solid var(--lp-ink);
  }
  .lp-btn-ghost:hover { background: var(--lp-ink); color: var(--lp-cream); }

  /* ===================================================== */
  /*  Top navigation                                        */
  /* ===================================================== */
  .web-nav {
    padding: 18px clamp(16px, 2.4vw, 32px); display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 40px;
    background: var(--lp-paper);
    border-bottom: 1px solid var(--lp-line);
    width: 100%;
  }
  .web-nav .logo,
  .web-nav .logo:hover,
  .web-nav .logo:focus,
  .web-nav .logo:visited,
  .web-nav .logo *,
  .web-nav .logo:hover * {
    text-decoration: none !important;
    color: var(--lp-ink);
  }
  .web-nav .logo {
    font-family: var(--lp-serif);
    font-size: 22px; font-weight: 700; letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 12px;
    cursor: pointer;
  }
  .web-nav .logo .mark {
    width: 34px; height: 34px;
    display: inline-flex; filter: drop-shadow(0 4px 10px rgba(181, 74, 44, 0.22));
  }
  .web-nav .logo .mark svg { width: 100%; height: 100%; display: block; }
  .web-nav .logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
  .web-nav .logo .wordmark .zh { font-size: 22px; letter-spacing: 0.06em; }
  .web-nav .logo .wordmark .zh em {
    font-style: normal; color: var(--lp-rust); font-weight: 700; margin-right: 1px;
  }
  .web-nav .logo .wordmark .en {
    font-family: 'Fraunces', Georgia, serif; font-style: italic;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--lp-ink-4); font-weight: 400; margin-top: 4px;
  }
  .web-nav ul {
    display: flex; gap: 36px; list-style: none; padding: 0; margin: 0;
    font-size: 14px; color: var(--lp-ink-2);
    justify-self: center;
  }
  .web-nav ul a {
    color: var(--lp-ink-2); text-decoration: none;
    position: relative; padding: 4px 0;
  }
  .web-nav ul a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--lp-coral-deep);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
  }
  .web-nav ul a:hover { color: var(--lp-coral-deep); }
  .web-nav ul a:hover::after { transform: scaleX(1); }

  .web-nav .nav-right {
    display: flex; align-items: center; gap: 18px; justify-self: end;
  }
  .web-nav .nav-right .phone {
    font-family: var(--lp-mono); font-size: 12px;
    color: var(--lp-ink-3); letter-spacing: 0.5px;
  }
  .web-nav .cta-mini {
    background: var(--lp-ink); color: var(--lp-cream);
    padding: 10px 20px; border-radius: 999px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .2s ease;
    border: none;
  }
  .web-nav .cta-mini:hover { background: var(--lp-coral-deep); }
  .web-nav .login-btn {
    background: transparent; color: var(--lp-ink);
    padding: 9px 18px; border-radius: 999px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid var(--lp-ink-4);
    transition: border-color .2s ease, color .2s ease, background .2s ease;
    font-family: inherit;
  }
  .web-nav .login-btn:hover {
    border-color: var(--lp-coral-deep);
    color: var(--lp-coral-deep);
    background: rgba(181, 74, 44, 0.04);
  }
  .web-nav .login-btn .avatar {
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, #F5A582, #B54A2C);
    color: #FFF7ED; font-size: 11px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* ===================================================== */
  /*  HERO — editorial magazine cover                       */
  /* ===================================================== */
  .web-hero {
    position: relative; overflow: hidden;
    padding: 80px 64px 110px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
      radial-gradient(circle at 12% 18%, rgba(232,137,108,0.18) 0%, transparent 45%),
      radial-gradient(circle at 92% 82%, rgba(200,149,88,0.22) 0%, transparent 50%),
      linear-gradient(180deg, #FCF1DD 0%, #F7E3C5 100%);
  }
  .web-hero > .hero-grid {
    max-width: 1400px;
    margin: 0 auto;
  }
  .web-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(26,18,13,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,18,13,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  }
  .web-hero .hero-meta-row {
    position: relative; z-index: 2;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 52px;
    font-family: var(--lp-mono); font-size: 11px;
    letter-spacing: 2px; text-transform: uppercase; color: var(--lp-ink-3);
  }
  .web-hero .hero-meta-row .issue {
    display: flex; gap: 18px;
  }
  .web-hero .hero-meta-row .issue b {
    color: var(--lp-ink); font-weight: 600;
  }

  .web-hero .hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
    align-items: center;
  }
  .web-hero .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px 7px 8px; border-radius: 999px;
    background: rgba(255, 247, 237, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 74, 44, 0.18);
    font-size: 12px; color: var(--lp-coral-deep); margin-bottom: 28px;
    font-weight: 500;
  }
  .web-hero .hero-tag .dot-live {
    width: 7px; height: 7px; border-radius: 50%; background: var(--lp-coral-deep);
    box-shadow: 0 0 0 4px rgba(181, 74, 44, 0.15);
  }
  .web-hero .hero-tag .sep {
    width: 1px; height: 12px; background: rgba(181, 74, 44, 0.25); margin: 0 4px;
  }

  .web-hero h1 {
    font-family: var(--lp-serif);
    font-size: 92px; font-weight: 650;
    line-height: 1.14;
    letter-spacing: 0.005em;
    color: var(--lp-ink);
    margin: 0 0 28px;
  }
  .web-hero h1 .line { display: block; }
  .web-hero h1 .accent {
    color: var(--lp-rust);
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .web-hero h1 .underline {
    background-image: linear-gradient(180deg, transparent 68%, rgba(232,137,108,0.35) 68%, rgba(232,137,108,0.35) 90%, transparent 90%);
    padding: 0 2px;
  }

  .web-hero .lead {
    font-size: 17px; color: var(--lp-ink-2); line-height: 1.8;
    margin: 0 0 36px; max-width: 520px;
    letter-spacing: 0.01em;
  }
  .web-hero .lead b { color: var(--lp-ink); font-weight: 600; }

  .web-hero .cta-row {
    display: flex; gap: 14px; align-items: center; margin-bottom: 36px;
  }
  .web-hero .cta-row--single {
    max-width: 520px;
    justify-content: center;
  }
  .web-hero .lp-btn-wide {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .web-hero .btn-hero-note {
    font-size: 12px; color: var(--lp-ink-3);
    max-width: 140px; line-height: 1.5;
  }

  .web-hero .trust-row {
    display: grid; grid-template-columns: repeat(3, auto);
    gap: 0 28px;
    font-size: 13px; color: var(--lp-ink-2);
    padding-top: 28px; border-top: 1px solid rgba(26,18,13,0.12);
    max-width: 560px;
  }
  .web-hero .trust-row .item {
    display: flex; align-items: flex-start; gap: 10px;
  }
  .web-hero .trust-row .chk {
    color: var(--lp-coral-deep); font-weight: 700;
    font-family: var(--lp-serif); font-size: 16px;
    line-height: 1;
  }

  /* ---- Hero visual: 3D hardcover book + ambient decor ---- */
  .hero-visual {
    position: relative;
    min-height: 560px;
    display: flex; justify-content: center; align-items: center;
    perspective: 1600px;
  }

  .hero-stage {
    position: relative; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
  }

  /* Video-only hero stage — blend-mode fused into hero gradient, no rectangle */
  .hero-stage--video {
    min-height: 600px;
    background: transparent;
    overflow: visible;
    border-radius: 0;
  }
  .hero-stage--video::before,
  .hero-stage--video::after { display: none; }
  .hero-bg-video {
    position: absolute;
    top: -10%; left: -25%;
    width: 150%; height: 120%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
    filter: saturate(1.1) contrast(1.05) brightness(1.04);
    -webkit-mask-image:
      radial-gradient(ellipse 49.5% 46% at 50% 50%,
        #000 0%,
        rgba(0,0,0,0.95) 32%,
        rgba(0,0,0,0.78) 54%,
        rgba(0,0,0,0.50) 72%,
        rgba(0,0,0,0.22) 86%,
        rgba(0,0,0,0.06) 95%,
        rgba(0,0,0,0) 100%);
    mask-image:
      radial-gradient(ellipse 49.5% 46% at 50% 50%,
        #000 0%,
        rgba(0,0,0,0.95) 32%,
        rgba(0,0,0,0.78) 54%,
        rgba(0,0,0,0.50) 72%,
        rgba(0,0,0,0.22) 86%,
        rgba(0,0,0,0.06) 95%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  /* The hardcover book */
  .hero-book {
    position: relative;
    width: 330px; height: 440px;
    transform-style: preserve-3d;
    transform: rotateY(-22deg) rotateX(6deg) rotateZ(-2deg);
    animation: book-float 7s ease-in-out infinite;
    box-shadow: var(--lp-shadow-book);
    border-radius: 3px 12px 12px 3px;
  }
  @keyframes book-float {
    0%, 100% { transform: rotateY(-22deg) rotateX(6deg) rotateZ(-2deg) translateY(0); }
    50%      { transform: rotateY(-20deg) rotateX(5deg) rotateZ(-2deg) translateY(-8px); }
  }

  /* Cover */
  .hero-book .cover {
    position: absolute; inset: 0;
    border-radius: 3px 12px 12px 3px;
    background:
      radial-gradient(circle at 70% 20%, rgba(255,255,255,0.16) 0%, transparent 40%),
      linear-gradient(155deg, #D86A48 0%, #B54A2C 55%, #8A2F19 100%);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15),
                inset 2px 0 0 rgba(255,255,255,0.12);
  }
  /* Cover texture: fine linen */
  .hero-book .cover::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px),
      repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 3px);
    opacity: 0.7;
  }
  /* Inner border embossing */
  .hero-book .cover::after {
    content: ""; position: absolute; inset: 18px 22px 18px 22px;
    border: 1px solid rgba(200, 149, 88, 0.55);
    border-radius: 2px;
    box-shadow: inset 0 0 0 3px rgba(200, 149, 88, 0.08);
  }

  .hero-book .cover-inner {
    position: absolute; inset: 36px 40px 36px 40px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; color: #FFF1D6;
  }
  .hero-book .cover-dec-top {
    font-family: var(--lp-mono); font-size: 9px; letter-spacing: 3px;
    color: rgba(232, 191, 122, 0.9);
    text-transform: uppercase;
    margin-top: 4px;
  }
  .hero-book .cover-ornament {
    margin: 14px auto 16px;
    width: 120px; height: 24px;
    background-image:
      linear-gradient(90deg, transparent 0, transparent 8%, rgba(232, 191, 122, 0.7) 8%, rgba(232, 191, 122, 0.7) 48%, transparent 48%, transparent 52%, rgba(232, 191, 122, 0.7) 52%, rgba(232, 191, 122, 0.7) 92%, transparent 92%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  .hero-book .cover-ornament::before {
    content: "✦"; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
    color: var(--lp-gold-bright); font-size: 14px;
  }
  .hero-book .cover-art {
    width: 130px; height: 130px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, #FFD9A8 0%, transparent 55%),
      radial-gradient(circle at 70% 70%, #FFB285 0%, transparent 60%),
      linear-gradient(135deg, #FFE4C2, #FFB593);
    display: flex; align-items: center; justify-content: center;
    font-size: 60px;
    box-shadow: inset 0 0 20px rgba(138, 47, 25, 0.25), 0 4px 10px rgba(0,0,0,0.15);
    margin: 6px auto 18px;
    position: relative;
  }
  .hero-book .cover-art::after {
    content: ""; position: absolute; inset: -8px;
    border: 1px dashed rgba(232, 191, 122, 0.5);
    border-radius: 50%;
  }

  .hero-book .title-area .child-name {
    font-family: var(--lp-serif); font-weight: 700;
    font-size: 36px; letter-spacing: 2px; line-height: 1;
    background: linear-gradient(160deg, #F5D9A0 0%, #C89558 50%, #F5D9A0 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    margin-bottom: 4px;
  }
  .hero-book .title-area .of {
    font-family: var(--lp-serif); font-size: 13px; color: #F1D7AE;
    letter-spacing: 3px; margin: 4px 0 10px;
  }
  .hero-book .title-area .main-title {
    font-family: var(--lp-serif); font-weight: 600;
    font-size: 26px; color: #FFF5E1; letter-spacing: 1px;
    line-height: 1.15;
  }
  .hero-book .title-area .sub-en {
    font-family: var(--lp-serif); font-style: italic;
    font-size: 12px; color: rgba(245, 217, 160, 0.85);
    margin-top: 10px; letter-spacing: 1.5px;
  }
  .hero-book .author-line {
    margin-top: auto;
    font-family: var(--lp-mono); font-size: 9px;
    color: rgba(245, 217, 160, 0.75);
    letter-spacing: 2.5px; text-transform: uppercase;
  }

  /* Spine — visible on left */
  .hero-book .spine {
    position: absolute;
    left: -22px; top: 4px; bottom: 4px; width: 22px;
    background: linear-gradient(90deg, #6B2814 0%, #8A2F19 60%, #7A281A 100%);
    border-radius: 3px 0 0 3px;
    transform: rotateY(90deg) translateZ(11px) translateX(11px);
    transform-origin: right center;
    box-shadow: inset 1px 0 0 rgba(0,0,0,0.3);
  }
  .hero-book .spine::after {
    content: ""; position: absolute; top: 14px; bottom: 14px; left: 50%;
    width: 1px; background: rgba(200, 149, 88, 0.4); transform: translateX(-50%);
  }

  /* Page edges (pages peeking from right) */
  .hero-book .pages {
    position: absolute; right: -6px; top: 3px; bottom: 3px; width: 6px;
    background: repeating-linear-gradient(180deg,
      #FFF7E8 0 1.5px,
      #F0DFC0 1.5px 2.2px);
    border-radius: 0 2px 2px 0;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.15);
  }

  /* Subtle front shine */
  .hero-book .shine {
    position: absolute; inset: 0;
    background: linear-gradient(120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0) 40%,
      rgba(255,255,255,0.18) 48%,
      rgba(255,255,255,0) 56%,
      rgba(255,255,255,0) 100%);
    border-radius: 3px 12px 12px 3px;
    pointer-events: none;
    mix-blend-mode: overlay;
  }

  /* Floating badges */
  .hero-badge {
    position: absolute; z-index: 3;
    background: rgba(255, 247, 237, 0.92);
    backdrop-filter: blur(10px);
    padding: 14px 18px; border-radius: 16px;
    box-shadow: 0 18px 40px -10px rgba(26, 18, 13, 0.18), 0 4px 10px rgba(26,18,13,0.06);
    border: 1px solid rgba(255,255,255,0.6);
    font-size: 13px; color: var(--lp-ink);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-badge .val {
    font-family: var(--lp-serif);
    font-size: 26px; font-weight: 700; color: var(--lp-coral-deep);
    line-height: 1;
  }
  .hero-badge .val .sm { font-size: 14px; }
  .hero-badge .label {
    font-size: 11px; color: var(--lp-ink-3); line-height: 1.4;
    letter-spacing: 0.3px;
  }
  .hero-badge.b1 {
    top: 40px; right: -20px;
    transform: rotate(3deg);
  }
  .hero-badge.b2 {
    bottom: 110px; left: -40px;
    transform: rotate(-3deg);
  }
  .hero-badge.b3 {
    bottom: 24px; right: 20px;
    transform: rotate(1deg);
  }

  /* Scattered "stickers" around book */
  .hero-decor {
    position: absolute; pointer-events: none;
  }
  .hero-decor.star-tl {
    top: 20px; left: 60px;
    font-family: var(--lp-serif); font-size: 42px;
    color: var(--lp-gold); opacity: 0.6; transform: rotate(-12deg);
  }
  .hero-decor.swirl-br {
    bottom: 40px; right: 40px;
    width: 80px; height: 80px;
    border: 1px dashed rgba(181, 74, 44, 0.35);
    border-radius: 50%;
  }
  .hero-decor.swirl-br::after {
    content: "每年续写"; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--lp-serif); font-size: 11px; color: var(--lp-coral-deep);
    letter-spacing: 2px;
  }

  /* ===================================================== */
  /*  Social proof strip                                    */
  /* ===================================================== */
  .web-strip {
    padding: 22px 64px;
    background: var(--lp-ink);
    color: #E8CFB0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--lp-mono);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    overflow: hidden; position: relative;
  }
  .web-strip .label { color: var(--lp-gold-bright); }
  .web-strip .brands {
    display: flex; gap: 46px; align-items: center;
    font-family: var(--lp-serif);
    font-size: 17px; letter-spacing: 1.5px; color: #D4BFA5;
    text-transform: none;
  }
  .web-strip .brands span {
    position: relative; padding-right: 46px;
  }
  .web-strip .brands span:not(:last-child)::after {
    content: "·"; position: absolute; right: 20px;
    color: rgba(212, 191, 165, 0.4);
  }

  /* ===================================================== */
  /*  Section base                                          */
  /* ===================================================== */
  .web-sec {
    padding: 110px 64px;
    position: relative;
    background: var(--lp-paper);
  }
  .web-sec.alt,
  .web-sec.dark {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .web-sec.alt > *,
  .web-sec.dark > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
  .web-sec.alt { background: #F5E4C6; }
  .web-sec.dark {
    background: var(--lp-ink);
    color: var(--lp-cream);
  }
  .web-sec .sec-head {
    display: grid; grid-template-columns: auto 1fr;
    align-items: end; gap: 40px;
    margin-bottom: 72px;
    max-width: 1200px;
  }
  .web-sec .sec-head .num {
    font-family: var(--lp-serif); font-style: italic;
    font-size: 92px; font-weight: 400; line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px var(--lp-coral-deep);
    letter-spacing: -2px;
  }
  .web-sec.dark .sec-head .num { -webkit-text-stroke-color: var(--lp-gold); }
  .web-sec .sec-head .txt .lp-eyebrow { margin-bottom: 14px; }
  .web-sec .sec-head h2 {
    font-family: var(--lp-serif);
    font-size: 56px; font-weight: 650;
    line-height: 1.18; margin: 0 0 14px;
    letter-spacing: 0;
    color: inherit;
  }
  .web-sec .sec-head h2 em {
    font-style: normal; font-weight: 700;
    color: var(--lp-rust);
    letter-spacing: 0.01em;
  }
  .web-sec.dark .sec-head h2 em { color: var(--lp-gold-bright); }
  .web-sec .sec-head .sec-lead {
    font-size: 16px; color: var(--lp-ink-2);
    line-height: 1.8; max-width: 620px; margin: 0;
    letter-spacing: 0.01em;
  }
  .web-sec.dark .sec-head .sec-lead { color: rgba(255,247,237,0.7); }
  .web-sec .sec-head .sec-lead b { color: var(--lp-ink); font-weight: 600; }
  .web-sec.dark .sec-head .sec-lead b { color: #fff; }

  /* ===================================================== */
  /*  Pillars — 3 differentiators                           */
  /* ===================================================== */
  .pillars {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
  }
  .pillar {
    padding: 44px 36px 40px;
    border-right: 1px solid var(--lp-line);
    position: relative;
    background: transparent;
    transition: background .3s ease;
  }
  .pillar:last-child { border-right: none; }
  .pillar:hover { background: rgba(255, 247, 237, 0.5); }

  .pillar .p-num {
    font-family: var(--lp-mono); font-size: 11px;
    color: var(--lp-ink-3); letter-spacing: 2px;
    margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
  }
  .pillar .p-num b {
    color: var(--lp-coral-deep); font-weight: 600;
  }

  .pillar .p-visual {
    height: 200px; margin-bottom: 30px;
    position: relative; overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--lp-shadow-soft);
  }
  .pillar .p-visual img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: saturate(0.95);
  }

  /* Pillar 1: face recognition grid (3 same-child portraits) */
  .pv-faces {
    display: flex; justify-content: center; align-items: center; gap: 12px;
    height: 100%;
  }
  .pv-face {
    width: 60px; height: 76px; border-radius: 8px;
    background:
      radial-gradient(circle at 50% 45%, #FFD6A8 0 28%, #FFB285 28% 55%, transparent 55%),
      linear-gradient(160deg, #FCE8C7, #F3D2A3);
    position: relative; box-shadow: var(--lp-shadow-soft);
    border: 1px solid rgba(181, 74, 44, 0.1);
  }
  .pv-face::before, .pv-face::after {
    content: ""; position: absolute;
    width: 4px; height: 4px; background: var(--lp-ink); border-radius: 50%;
    top: 30%;
  }
  .pv-face::before { left: 38%; }
  .pv-face::after { right: 38%; }
  .pv-face .mouth {
    position: absolute; bottom: 34%; left: 50%; transform: translateX(-50%);
    width: 12px; height: 6px; border: 1.5px solid var(--lp-ink);
    border-top: none; border-radius: 0 0 10px 10px;
  }
  .pv-face.sc { transform: rotate(-8deg); }
  .pv-face.sc2 { transform: rotate(0deg) scale(1.06); border: 2px solid var(--lp-coral-deep); }
  .pv-face.sc3 { transform: rotate(9deg); }
  .pv-face .sc-tag {
    position: absolute; top: -10px; right: -10px;
    background: var(--lp-coral-deep); color: #fff;
    font-family: var(--lp-mono); font-size: 9px; font-weight: 700;
    padding: 2px 5px; border-radius: 3px; letter-spacing: 0.5px;
  }

  /* Pillar 2: book-spine timeline (years) */
  .pv-shelf {
    display: flex; align-items: flex-end; justify-content: center;
    height: 100%; gap: 4px;
    padding: 0 10px 8px;
    border-bottom: 2px solid var(--lp-ink-2);
    margin: 0 4px;
  }
  .pv-spine {
    width: 14px; background: var(--lp-coral); border-radius: 2px 2px 0 0;
    display: flex; justify-content: center; align-items: flex-end;
    font-family: var(--lp-mono); font-size: 9px; color: #fff;
    padding-bottom: 6px; letter-spacing: 0.5px;
    box-shadow: inset -1px 0 0 rgba(0,0,0,0.12);
  }
  .pv-spine.y1 { height: 72px; background: #D5C3A3; color: var(--lp-ink); }
  .pv-spine.y2 { height: 84px; background: #D0A88A; color: #fff; }
  .pv-spine.y3 { height: 96px; background: #C48260; color: #fff; }
  .pv-spine.y4 { height: 108px; background: var(--lp-coral-deep); color: #fff; }
  .pv-spine.y5 { height: 120px; background: var(--lp-ember); color: #fff; }
  .pv-spine.y6 { height: 132px; background: var(--lp-ink-2); color: var(--lp-gold-bright); }
  .pv-spine.pending {
    background: transparent;
    border: 1px dashed var(--lp-ink-3);
    color: var(--lp-ink-3);
    width: 14px; height: 132px;
  }

  /* Pillar 3: gift box */
  .pv-gift {
    position: relative; width: 140px; height: 140px; margin: 0 auto;
  }
  .pv-gift .box {
    position: absolute; inset: 18px 0 0;
    background: linear-gradient(145deg, #2E3E33 0%, #405448 100%);
    border-radius: 6px;
    box-shadow: 0 20px 40px -10px rgba(26,18,13,0.35);
  }
  .pv-gift .lid {
    position: absolute; top: 10px; left: -4px; right: -4px;
    height: 32px;
    background: linear-gradient(145deg, #405448 0%, #2E3E33 100%);
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(26,18,13,0.18);
  }
  .pv-gift .ribbon-v {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 14px; height: 100%;
    background: linear-gradient(180deg, var(--lp-coral) 0%, var(--lp-coral-deep) 100%);
  }
  .pv-gift .ribbon-h {
    position: absolute; top: 22px; left: 0; right: 0;
    height: 14px;
    background: linear-gradient(180deg, var(--lp-coral) 0%, var(--lp-coral-deep) 100%);
  }
  .pv-gift .bow {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 28px;
    background: radial-gradient(ellipse at 30% 50%, var(--lp-coral) 0 30%, transparent 30%),
                radial-gradient(ellipse at 70% 50%, var(--lp-coral) 0 30%, transparent 30%);
    background-size: 50% 100%, 50% 100%;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
  }
  .pv-gift .bow::after {
    content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px; background: var(--lp-coral-deep);
    border-radius: 2px;
  }
  .pv-gift .stamp {
    position: absolute; bottom: -6px; right: -16px;
    font-family: var(--lp-serif); font-size: 10px; font-weight: 700;
    color: var(--lp-ember); background: rgba(255, 247, 237, 0.9);
    padding: 4px 10px; border: 1px solid var(--lp-ember);
    border-radius: 4px; transform: rotate(-8deg); letter-spacing: 1px;
  }

  .pillar h3 {
    font-family: var(--lp-serif); font-size: 26px; font-weight: 600;
    margin: 0 0 14px; line-height: 1.25; letter-spacing: -0.2px;
    color: var(--lp-ink);
  }
  .pillar h3 em { font-style: normal; font-weight: 700; color: var(--lp-rust); }
  .pillar p {
    font-size: 14px; color: var(--lp-ink-2); line-height: 1.8; margin: 0 0 20px;
  }
  .pillar .tag-compare {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--lp-mono); font-size: 11px;
    padding: 6px 10px; border-radius: 3px;
    background: rgba(26, 18, 13, 0.05);
    color: var(--lp-ink-3); letter-spacing: 0.3px;
  }
  .pillar .tag-compare::before {
    content: "vs"; font-weight: 700; color: var(--lp-coral-deep);
  }

  /* ===================================================== */
  /*  How it works                                          */
  /* ===================================================== */
  .steps-web {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
    counter-reset: stepctr;
  }
  .steps-web::before {
    content: ""; position: absolute; top: 36px; left: 60px; right: 60px;
    height: 1px;
    background-image: linear-gradient(90deg, var(--lp-ink-3) 50%, transparent 50%);
    background-size: 8px 1px;
    z-index: 0;
  }
  .step-web {
    padding: 0 22px;
    position: relative; z-index: 1;
    text-align: left;
  }
  .step-web .s-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--lp-paper); color: var(--lp-ink);
    border: 1px solid var(--lp-ink);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--lp-serif); font-weight: 600; font-size: 28px;
    margin-bottom: 22px;
    line-height: 1;
  }
  .step-web .s-num .step-label {
    font-family: var(--lp-mono); font-size: 8px;
    letter-spacing: 1.5px; color: var(--lp-ink-3);
    margin-top: 2px; text-transform: uppercase;
  }
  .step-web h4 {
    font-family: var(--lp-serif); font-size: 20px; font-weight: 600;
    margin: 0 0 10px; letter-spacing: -0.2px;
  }
  .step-web p {
    font-size: 13px; color: var(--lp-ink-2); margin: 0 0 16px; line-height: 1.75;
  }
  .step-web .dur {
    font-family: var(--lp-mono); font-size: 11px; letter-spacing: 1px;
    color: var(--lp-ink-3);
    padding: 4px 10px; display: inline-block;
    background: rgba(26, 18, 13, 0.05); border-radius: 3px;
  }

  .step-web.highlight .s-num {
    background: var(--lp-coral-deep); color: #fff; border-color: var(--lp-coral-deep);
    box-shadow: 0 10px 24px -6px rgba(181, 74, 44, 0.5);
  }
  .step-web.highlight .s-num .step-label { color: rgba(255,255,255,0.7); }
  .step-web.highlight h4 { color: var(--lp-coral-deep); }
  .step-web.highlight .dur {
    background: var(--lp-coral-deep); color: #fff;
  }
  .step-web.highlight::before {
    content: "🌟 免费漏斗";
    position: absolute; top: -24px; left: 22px;
    font-family: var(--lp-mono); font-size: 10px; letter-spacing: 1.5px;
    color: var(--lp-coral-deep); font-weight: 700;
    padding: 4px 10px; background: var(--lp-paper);
    border: 1px solid var(--lp-coral-deep);
    border-radius: 999px;
  }

  /* ===================================================== */
  /*  Samples                                               */
  /* ===================================================== */
  .samples {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px;
  }
  .sample-card {
    background: var(--lp-cream);
    border-radius: 4px; overflow: hidden;
    border: 1px solid var(--lp-line);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .sample-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-soft);
  }
  .sample-img {
    height: 280px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--lp-ink-2);
  }
  .sample-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .sample-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,13,0) 55%, rgba(26,18,13,0.55) 100%);
    pointer-events: none; z-index: 1;
  }
  .sample-img::before {
    content: ""; position: absolute; inset: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    pointer-events: none; z-index: 2;
  }
  .sample-img .sample-label {
    position: absolute; bottom: 16px; left: 20px;
    font-family: var(--lp-mono); font-size: 10px;
    color: rgba(255,255,255,0.95); letter-spacing: 2px;
    z-index: 3;
  }
  .sample-info {
    padding: 28px 26px 30px;
    border-top: 1px solid var(--lp-line);
  }
  .sample-info .lbl {
    font-family: var(--lp-mono); font-size: 10px; letter-spacing: 2px;
    color: var(--lp-coral-deep); font-weight: 600;
    margin-bottom: 12px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .sample-info .lbl .age {
    color: var(--lp-ink-3); font-weight: 400;
  }
  .sample-info h4 {
    font-family: var(--lp-serif); font-size: 24px; font-weight: 600;
    margin: 0 0 10px; letter-spacing: -0.2px;
  }
  .sample-info p {
    margin: 0 0 18px; font-size: 13.5px; color: var(--lp-ink-2); line-height: 1.8;
  }
  .sample-info .peek {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--lp-ink); font-weight: 600;
    border-bottom: 1px solid var(--lp-ink); padding-bottom: 2px;
    cursor: pointer; transition: gap .2s ease;
  }
  .sample-info .peek:hover { gap: 10px; }

  /* ===================================================== */
  /*  Ritual — "每年续写" visual metaphor                   */
  /* ===================================================== */
  .ritual-wrap {
    max-width: 1200px; margin: 0 auto;
    padding: 48px;
    background: linear-gradient(180deg, #FFF5E3 0%, #F3E4CB 100%);
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    position: relative;
    box-shadow: var(--lp-shadow-soft);
  }
  .ritual-wrap::before {
    content: "RITUAL";
    position: absolute; top: -11px; left: 36px;
    padding: 2px 12px;
    background: var(--lp-ink); color: var(--lp-gold-bright);
    font-family: var(--lp-mono); font-size: 11px; letter-spacing: 3px;
    border-radius: 2px;
  }
  .ritual-shelf {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 12px; align-items: flex-end;
    padding: 0 20px 0 20px;
    border-bottom: 4px double var(--lp-ink-2);
    margin-bottom: 28px;
  }
  .rit-book {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .rit-book .rb-vol {
    width: 100%; border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: inset -2px 0 0 rgba(0,0,0,0.18), inset 2px 0 0 rgba(255,255,255,0.08);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 10px;
    color: #fff; font-family: var(--lp-serif); font-weight: 600;
    font-size: 18px; letter-spacing: 1px;
  }
  .rit-book.a2 .rb-vol { height: 140px; background: #D5C3A3; color: var(--lp-ink-2); }
  .rit-book.a3 .rb-vol { height: 160px; background: #CCA585; }
  .rit-book.a4 .rb-vol { height: 180px; background: #B57F5B; }
  .rit-book.a5 .rb-vol { height: 200px; background: var(--lp-coral); }
  .rit-book.a6 .rb-vol { height: 220px; background: var(--lp-coral-deep); }
  .rit-book.a7 .rb-vol { height: 240px; background: var(--lp-ember); }
  .rit-book.a8 .rb-vol {
    height: 260px;
    background: repeating-linear-gradient(135deg,
      transparent 0 8px,
      rgba(26,18,13,0.08) 8px 16px),
      var(--lp-ink-2);
    border: 1px dashed var(--lp-ink-3);
    color: var(--lp-gold-bright);
    font-size: 14px;
  }
  .rit-book .rb-vol::before {
    content: ""; position: absolute; top: 14px; left: 10%; right: 10%;
    height: 1px; background: rgba(255,255,255,0.25);
  }
  .rit-book .rb-vol::after {
    content: ""; position: absolute; bottom: 24px; left: 10%; right: 10%;
    height: 1px; background: rgba(255,255,255,0.25);
  }
  .rit-book .rb-age {
    font-family: var(--lp-mono); font-size: 11px; letter-spacing: 1px;
    color: var(--lp-ink-3); margin-top: 8px;
  }
  .rit-book.future .rb-age { color: var(--lp-coral-deep); font-weight: 700; }
  .rit-book .rb-year {
    font-family: var(--lp-mono); font-size: 9px; letter-spacing: 0.5px;
    color: var(--lp-ink-4);
  }

  .ritual-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 20px;
  }
  .ritual-foot .rit-msg {
    font-family: var(--lp-serif); font-size: 18px;
    color: var(--lp-ink);
    letter-spacing: 0.01em;
  }
  .ritual-foot .rit-msg b {
    font-weight: 700; color: var(--lp-rust);
  }
  .ritual-foot .rit-tag {
    font-family: var(--lp-mono); font-size: 11px; letter-spacing: 2px;
    color: var(--lp-ink-3);
    display: flex; align-items: center; gap: 8px;
  }
  .ritual-foot .rit-tag::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--lp-coral-deep);
    box-shadow: 0 0 0 3px rgba(181,74,44,0.2);
  }

  /* ===================================================== */
  /*  Testimonials                                          */
  /* ===================================================== */
  .testis {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testi {
    background: var(--lp-paper);
    border: 1px solid var(--lp-line);
    padding: 36px 32px 28px;
    border-radius: 4px;
    position: relative;
    display: flex; flex-direction: column;
  }
  .testi.featured {
    background: #FFF7ED;
    border-color: var(--lp-coral-deep);
    box-shadow: 0 20px 50px -24px rgba(181, 74, 44, 0.3);
  }
  .testi::before {
    content: "“";
    position: absolute; top: 10px; left: 24px;
    font-family: var(--lp-serif); font-size: 80px; line-height: 1;
    color: var(--lp-coral-deep); opacity: 0.22;
    font-weight: 700;
  }
  .testi .role-tag {
    font-family: var(--lp-mono); font-size: 10px; letter-spacing: 2px;
    color: var(--lp-coral-deep); text-transform: uppercase;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .testi .role-tag::after {
    content: ""; flex: 1; height: 1px; background: var(--lp-line);
  }
  .testi .stars {
    color: var(--lp-gold); font-size: 13px; margin-bottom: 14px;
    letter-spacing: 2px;
  }
  .testi .quote {
    font-family: var(--lp-serif);
    font-size: 17px; line-height: 1.8;
    color: var(--lp-ink); margin: 0 0 24px; flex: 1;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .testi .quote em {
    color: var(--lp-rust); font-style: normal; font-weight: 700;
    background-image: linear-gradient(180deg, transparent 72%, rgba(232,137,108,0.28) 72%, rgba(232,137,108,0.28) 92%, transparent 92%);
    padding: 0 2px;
  }
  .testi .who {
    display: flex; gap: 14px; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--lp-line);
  }
  .testi .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-coral) 0%, var(--lp-coral-deep) 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--lp-serif); font-weight: 700; font-size: 18px;
    flex-shrink: 0;
  }
  .testi .who .name {
    font-weight: 600; font-size: 14px; color: var(--lp-ink);
  }
  .testi .who .from {
    font-family: var(--lp-mono); font-size: 11px;
    color: var(--lp-ink-3); letter-spacing: 0.5px;
    margin-top: 3px;
  }

  /* Testimonial outcomes strip */
  .testi-metrics {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    padding: 28px 0;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
  }
  .testi-metrics .m {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid var(--lp-line);
  }
  .testi-metrics .m:last-child { border-right: none; }
  .testi-metrics .m .val {
    font-family: var(--lp-serif); font-size: 38px; font-weight: 600;
    color: var(--lp-ink); line-height: 1;
    letter-spacing: -1px;
  }
  .testi-metrics .m .val .unit {
    font-size: 16px; color: var(--lp-ink-3); font-weight: 400; margin-left: 2px;
  }
  .testi-metrics .m .label {
    font-family: var(--lp-mono); font-size: 10px;
    color: var(--lp-ink-3); letter-spacing: 1.5px;
    margin-top: 10px; text-transform: uppercase;
  }

  /* ===================================================== */
  /*  Pricing                                               */
  /* ===================================================== */
  .pricing {
    display: grid; grid-template-columns: 1fr 1.1fr 1fr;
    gap: 0; max-width: 1160px; margin: 0 auto;
    border: 1px solid var(--lp-line);
    border-radius: 6px; overflow: hidden;
    background: var(--lp-paper);
  }
  .price-card {
    padding: 44px 36px 40px; position: relative;
    border-right: 1px solid var(--lp-line);
    background: var(--lp-paper);
  }
  .price-card:last-child { border-right: none; }
  .price-card.featured {
    background: var(--lp-ink);
    color: var(--lp-cream);
    transform: none;
    position: relative;
    margin: -12px 0;
    border-radius: 6px;
    box-shadow: 0 30px 60px -20px rgba(26, 18, 13, 0.5);
    z-index: 2;
  }
  .price-card.featured::after {
    content: ""; position: absolute; inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='6'><circle cx='1' cy='1' r='0.4' fill='rgba(232,191,122,0.15)'/></svg>");
    pointer-events: none;
    border-radius: 6px;
  }
  .price-card .badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--lp-gold); color: var(--lp-ink);
    padding: 4px 14px;
    font-family: var(--lp-mono); font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 3px;
    z-index: 3;
  }
  .price-card h4 {
    font-family: var(--lp-serif); font-size: 22px; font-weight: 600;
    margin: 0 0 6px; letter-spacing: -0.2px;
  }
  .price-card .sub {
    font-size: 13px; color: var(--lp-ink-3); margin-bottom: 28px; line-height: 1.5;
  }
  .price-card.featured .sub { color: rgba(255,247,237,0.65); }
  .price-card .amt {
    font-family: var(--lp-serif); font-size: 64px; font-weight: 600;
    color: var(--lp-ink); margin-bottom: 4px; line-height: 1;
    letter-spacing: -2px;
  }
  .price-card.featured .amt { color: var(--lp-gold-bright); }
  .price-card .amt .cny {
    font-size: 22px; font-weight: 500; color: var(--lp-ink-3);
    margin-right: 4px; letter-spacing: 0;
  }
  .price-card.featured .amt .cny { color: rgba(232,191,122,0.6); }
  .price-card .amt-hint {
    font-family: var(--lp-mono); font-size: 11px; letter-spacing: 1px;
    color: var(--lp-ink-3); margin-bottom: 30px;
    padding-bottom: 24px; border-bottom: 1px solid var(--lp-line);
  }
  .price-card.featured .amt-hint {
    color: rgba(255,247,237,0.6);
    border-bottom-color: rgba(255,247,237,0.15);
  }
  .price-card ul {
    list-style: none; padding: 0; margin: 0 0 32px;
  }
  .price-card ul li {
    padding: 9px 0; font-size: 13.5px; display: flex; gap: 12px; align-items: flex-start;
    color: var(--lp-ink-2);
    line-height: 1.5;
  }
  .price-card.featured ul li { color: rgba(255,247,237,0.85); }
  .price-card ul li::before {
    content: "✓"; color: var(--lp-coral-deep); font-weight: 700;
    flex-shrink: 0; font-size: 12px; margin-top: 2px;
  }
  .price-card.featured ul li::before { color: var(--lp-gold-bright); }
  .price-card ul li.dim { color: var(--lp-ink-4); }
  .price-card ul li.dim::before { content: "—"; color: var(--lp-line); }
  .price-card.featured ul li.dim { color: rgba(255,247,237,0.35); }
  .price-card.featured ul li.dim::before { color: rgba(255,247,237,0.25); }
  .price-card .btn-pick {
    display: block; width: 100%; padding: 14px;
    border-radius: 999px;
    border: 1px solid var(--lp-ink);
    background: transparent; color: var(--lp-ink);
    font-family: var(--lp-sans); font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background .2s, color .2s;
  }
  .price-card .btn-pick:hover { background: var(--lp-ink); color: var(--lp-cream); }
  .price-card.featured .btn-pick {
    background: var(--lp-gold);
    color: var(--lp-ink); border-color: var(--lp-gold);
  }
  .price-card.featured .btn-pick:hover {
    background: var(--lp-gold-bright); border-color: var(--lp-gold-bright);
  }

  .pricing-note {
    max-width: 1160px; margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--lp-mono); font-size: 11px;
    color: var(--lp-ink-3); letter-spacing: 1px;
    padding: 16px 0;
  }
  .pricing-note .n-item {
    display: flex; align-items: center; gap: 8px;
  }
  .pricing-note .n-item::before {
    content: "★"; color: var(--lp-coral-deep);
  }

  /* ===================================================== */
  /*  Privacy vault — dark brand statement                  */
  /* ===================================================== */
  .privacy-web {
    background:
      radial-gradient(circle at 20% 20%, rgba(200,149,88,0.12) 0%, transparent 40%),
      linear-gradient(145deg, #1F2923 0%, #2E3E33 100%);
    color: #FBF4E6;
    padding: 72px 64px;
    border-radius: 6px; max-width: 1200px; margin: 0 auto;
    position: relative; overflow: hidden;
    border: 1px solid rgba(200,149,88,0.2);
  }
  .privacy-web::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,149,88,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,149,88,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
  }
  .privacy-head {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 40px; margin-bottom: 48px;
    position: relative; z-index: 1;
  }
  .privacy-head .seal {
    width: 88px; height: 88px; border-radius: 50%;
    border: 2px solid var(--lp-gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--lp-gold-bright);
    font-family: var(--lp-serif);
    position: relative;
  }
  .privacy-head .seal::before {
    content: ""; position: absolute; inset: 4px; border-radius: 50%;
    border: 1px solid rgba(200,149,88,0.4);
  }
  .privacy-head .seal .lock-icon { font-size: 22px; margin-bottom: 2px; }
  .privacy-head .seal .seal-t { font-family: var(--lp-mono); font-size: 8px; letter-spacing: 1.5px; }

  .privacy-head .title-block {
    padding: 0 0 0 8px;
  }
  .privacy-head .title-block .lp-eyebrow { margin-bottom: 12px; }
  .privacy-head h2 {
    font-family: var(--lp-serif); font-size: 44px; font-weight: 650;
    color: #fff; margin: 0 0 10px;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .privacy-head h2 em {
    font-style: normal; font-weight: 700; color: var(--lp-gold-bright);
  }
  .privacy-head .title-block p {
    font-size: 14px; line-height: 1.7; color: rgba(251, 244, 230, 0.7);
    margin: 0; max-width: 520px;
  }
  .privacy-head .compliance-stack {
    display: flex; flex-direction: column; gap: 6px;
    font-family: var(--lp-mono); font-size: 10px;
    letter-spacing: 1.5px; color: rgba(232, 191, 122, 0.8);
    border-left: 1px solid rgba(200,149,88,0.3);
    padding-left: 18px;
  }
  .privacy-head .compliance-stack span::before {
    content: "§ "; color: var(--lp-gold);
  }

  .priv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    position: relative; z-index: 1;
  }
  .priv-tile {
    background: rgba(0,0,0,0.18);
    padding: 28px 26px;
    border-radius: 4px;
    border: 1px solid rgba(200, 149, 88, 0.22);
    position: relative;
    transition: border-color .2s ease, background .2s ease;
  }
  .priv-tile:hover {
    border-color: rgba(200, 149, 88, 0.5);
    background: rgba(0,0,0,0.28);
  }
  .priv-tile .t-num {
    font-family: var(--lp-mono); font-size: 10px; letter-spacing: 2px;
    color: var(--lp-gold-bright); margin-bottom: 18px;
  }
  .priv-tile .t-icon-glyph {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--lp-gold);
    border-radius: 50%;
    color: var(--lp-gold-bright);
    font-size: 18px;
    margin-bottom: 20px;
  }
  .priv-tile h4 {
    font-family: var(--lp-serif); font-size: 18px; font-weight: 600;
    margin: 0 0 10px; color: #fff; line-height: 1.3;
  }
  .priv-tile p {
    margin: 0; font-size: 13px; color: rgba(251, 244, 230, 0.7);
    line-height: 1.75;
  }
  .priv-tile .t-meta {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px dashed rgba(200, 149, 88, 0.25);
    font-family: var(--lp-mono); font-size: 10px;
    letter-spacing: 1px; color: var(--lp-gold-bright);
  }

  /* ===================================================== */
  /*  FAQ                                                   */
  /* ===================================================== */
  .faq-list {
    max-width: 960px; margin: 0 auto;
    border-top: 1px solid var(--lp-ink-2);
  }
  .faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--lp-line);
    padding: 28px 8px;
    margin: 0;
    transition: background .2s ease;
  }
  .faq-item:hover { background: rgba(255,247,237,0.4); }
  .faq-item .q {
    font-family: var(--lp-serif); font-size: 20px; font-weight: 650;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 28px;
    cursor: pointer;
    color: var(--lp-ink);
    line-height: 1.55;
    letter-spacing: 0.005em;
  }
  .faq-item .q .q-num {
    font-family: var(--lp-mono); font-size: 12px; letter-spacing: 1px;
    color: var(--lp-coral-deep); font-weight: 600;
    margin-right: 14px;
  }
  .faq-item .q .plus {
    color: var(--lp-coral-deep); font-size: 24px; font-weight: 300;
    line-height: 1; flex-shrink: 0;
    transition: transform .2s ease;
  }
  .faq-item .a {
    font-family: var(--lp-sans);
    font-size: 14.5px; color: var(--lp-ink-2); line-height: 1.9;
    margin: 16px 0 0 38px; padding-top: 16px;
    border-top: 1px dashed var(--lp-line);
  }
  .faq-item .a b { color: var(--lp-ink); }
  .faq-item.closed .a { display: none; }
  .faq-item.closed .q .plus { transform: rotate(0deg); }

  /* ===================================================== */
  /*  Final CTA — editorial close                           */
  /* ===================================================== */
  .final-cta {
    padding: 120px 64px;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
      radial-gradient(circle at 50% 120%, rgba(232, 191, 122, 0.25) 0%, transparent 60%),
      linear-gradient(180deg, var(--lp-coral-deep) 0%, var(--lp-ember) 100%);
    color: #FFF5E6;
    position: relative; overflow: hidden;
  }
  .final-cta > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
  .final-cta::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255, 245, 230, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 245, 230, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
  }
  .final-cta .cta-eyebrow {
    font-family: var(--lp-mono); font-size: 11px;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--lp-gold-bright);
    margin-bottom: 28px;
    display: flex; justify-content: center; align-items: center; gap: 12px;
    position: relative; z-index: 1;
  }
  .final-cta .cta-eyebrow::before,
  .final-cta .cta-eyebrow::after {
    content: ""; width: 40px; height: 1px; background: var(--lp-gold-bright); opacity: 0.5;
  }
  .final-cta h2 {
    font-family: var(--lp-serif); font-weight: 650;
    font-size: 72px; margin: 0 0 24px; color: #fff;
    line-height: 1.16; letter-spacing: 0;
    position: relative; z-index: 1;
  }
  .final-cta h2 em {
    font-style: normal; font-weight: 700; color: var(--lp-cream-glow);
    letter-spacing: 0.01em;
  }
  .final-cta p {
    font-size: 17px; color: rgba(255, 245, 230, 0.92);
    margin: 0 auto 42px;
    max-width: 580px; line-height: 1.85;
    letter-spacing: 0.01em;
    position: relative; z-index: 1;
  }
  .final-cta .btn-final {
    background: var(--lp-paper); color: var(--lp-ink);
    padding: 20px 44px;
    border-radius: 999px;
    font-family: var(--lp-sans); font-size: 16px; font-weight: 700;
    border: none; cursor: pointer;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    display: inline-flex; align-items: center; gap: 12px;
    position: relative; z-index: 1;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .final-cta .btn-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.3);
  }
  .final-cta .micro-proof {
    margin-top: 32px;
    display: inline-flex; align-items: center; gap: 24px;
    padding: 12px 24px;
    background: rgba(0,0,0,0.18);
    border-radius: 999px;
    font-family: var(--lp-mono); font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255, 245, 230, 0.75);
    position: relative; z-index: 1;
  }
  .final-cta .micro-proof .dot-sep {
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(255, 245, 230, 0.45);
  }

  /* ===================================================== */
  /*  Footer                                                */
  /* ===================================================== */
  .web-footer {
    background: var(--lp-ink); color: #B89E88;
    padding: 72px 64px 32px;
    font-size: 13px;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .web-footer > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
  .web-footer::before {
    content: ""; position: absolute; top: 0; left: 64px; right: 64px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
  }
  .web-footer .cols {
    display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .web-footer .brand-col .logo {
    font-family: var(--lp-serif); font-size: 24px; font-weight: 700;
    color: #fff; margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px; letter-spacing: 0.06em;
  }
  .web-footer .brand-col .logo .mark {
    width: 36px; height: 36px; display: inline-flex;
    filter: drop-shadow(0 4px 12px rgba(245, 165, 130, 0.25));
  }
  .web-footer .brand-col .logo .mark svg { width: 100%; height: 100%; display: block; }
  .web-footer .brand-col .logo em {
    font-style: normal; color: var(--lp-gold-bright); font-weight: 700; margin-right: 1px;
  }
  .web-footer .brand-col .logo .en {
    display: block; font-family: 'Fraunces', Georgia, serif; font-style: italic;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: #9B866F; font-weight: 400; margin-top: 4px;
  }
  .web-footer h5 {
    color: #fff; font-size: 13px; margin: 0 0 20px;
    font-family: var(--lp-mono); letter-spacing: 2px;
    text-transform: uppercase; font-weight: 500;
  }
  .web-footer ul { list-style: none; padding: 0; margin: 0; }
  .web-footer ul li {
    margin-bottom: 12px; color: #8C7A66;
    transition: color .15s ease; cursor: pointer;
  }
  .web-footer ul li:hover { color: var(--lp-gold-bright); }
  .web-footer .brand-blurb {
    line-height: 1.85; max-width: 360px;
    font-size: 13px; color: #9B866F;
    margin: 0 0 24px;
  }
  .web-footer .motto {
    font-family: var(--lp-serif);
    font-size: 18px; color: var(--lp-gold-bright);
    padding-left: 14px; border-left: 2px solid var(--lp-gold);
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
  .web-footer .legal {
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    color: #6B5C4F; font-size: 11px;
    font-family: var(--lp-mono); letter-spacing: 0.5px;
    flex-wrap: wrap; gap: 12px;
  }
  .web-footer .legal .left-stack {
    display: flex; align-items: center; gap: 18px;
  }
  .web-footer .legal .compliance-badges {
    display: flex; gap: 10px;
  }
  .web-footer .legal .compliance-badges span {
    padding: 3px 10px;
    border: 1px solid rgba(200,149,88,0.3);
    border-radius: 2px;
    color: var(--lp-gold-bright);
  }

  /* Standalone page overrides: strip the fake browser frame, go full width */
  .browser {
    max-width: 1400px !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
  .browser-bar { display: none !important; }

  /* Responsive fallback */
  @media (max-width: 900px) {
    .web-hero .hero-grid,
    .pillars,
    .steps-web,
    .samples,
    .testis,
    .pricing,
    .priv-grid,
    .ritual-shelf,
    .web-footer .cols {
      grid-template-columns: 1fr !important;
    }
    .web-hero h1 { font-size: 48px !important; }
    .web-hero { padding: 40px 24px 60px !important; }
    .web-sec { padding: 60px 24px !important; }
    .web-sec .sec-head { grid-template-columns: 1fr !important; gap: 16px !important; }
    .web-sec .sec-head h2 { font-size: 36px !important; }
    .web-nav { padding: 14px 24px !important; grid-template-columns: auto auto !important; }
    .web-nav ul { display: none; }
    .final-cta h2 { font-size: 36px !important; }
    .web-footer { padding: 40px 24px 24px !important; }
  }


/* === inline block #2 === */
@media(max-width:820px){.scene-grid{grid-template-columns:repeat(2,1fr) !important;}}@media(max-width:520px){.scene-grid{grid-template-columns:1fr !important;}}

/* ============================================================
 * FEATURED BOOKS · 后台 admin 开启 is_featured 的绘本
 * ============================================================ */
.web-sec.featured-books-sec {
  padding-top: 50px;       /* 覆盖默认 .web-sec 的 110px 上下边距，让区块更紧凑 */
  padding-bottom: 70px;
}
@media (max-width: 900px) {
  .web-sec.featured-books-sec { padding-top: 32px !important; padding-bottom: 40px !important; }
}

.featured-books-sec .sec-head { margin-bottom: 8px; }

.featured-books-sec .featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 28px;
}
@media (max-width: 1100px) { .featured-books-sec .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .featured-books-sec .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .featured-books-sec .featured-grid { grid-template-columns: 1fr; } }

.featured-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--lp-line, #E4D3B8);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;                    /* 撑满 grid cell，所有卡片等高 */
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(40, 25, 15, 0.22);
  border-color: var(--lp-coral, #E8896C);
  text-decoration: none;
}

/* cover 用正方形：兼容 landscape/portrait 绘本，所有封面区域大小一致 */
.featured-card .cover {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--lp-paper-2, #F3E4CB);
  overflow: hidden;
  flex-shrink: 0;
}
.featured-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;     /* 优先保留绘本上半部分（标题/主角通常在那）*/
  display: block;
}
.featured-card .cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--lp-ink-4, #8A7668);
  background: var(--lp-paper-2, #F3E4CB);
  aspect-ratio: 1 / 1;
}

.featured-card .meta {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;                          /* 占满 cover 之外剩余空间 */
}
.featured-card .title {
  font-family: var(--lp-serif, "Noto Serif SC", serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--lp-ink, #1A120D);
  line-height: 1.4;
  margin: 0;
  min-height: 2.8em;                /* 锁定 2 行高度：1 行/2 行标题卡片底部仍齐平 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}
.featured-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;                 /* tags 推到 meta 底部对齐 */
}
.featured-card .tags span {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lp-ink-3, #5B4A40);
  background: var(--lp-cream, #FFF7ED);
  border: 1px solid var(--lp-line-soft, #EEE1CA);
  padding: 3px 8px;
  border-radius: 4px;
}

/* === Login modal (aimani 登录提示) === */
.lp-form .login-msg {
  min-height: 18px;
  margin: 4px 0 -4px;
  font-size: 13px;
  color: var(--lp-ink-4, #8A7668);
  text-align: center;
}
.lp-form .login-msg.err { color: var(--lp-coral-deep, #B54A2C); font-weight: 600; }
.lp-form .login-msg.ok  { color: #5AA871; font-weight: 600; }
.lp-form .lp-link {
  color: var(--lp-coral-deep, #B54A2C);
  text-decoration: none;
  font-weight: 600;
}
.lp-form .lp-link:hover { text-decoration: underline; }

/* === Wechat Pay modal (取代旧咨询表单 lpModal) === */
.wxpay-body {
  text-align: center;
  padding: 8px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wxpay-amount {
  font-family: var(--lp-serif, "Noto Serif SC", serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--lp-rust, #A04121);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.wxpay-amount .cny { font-size: 22px; margin-right: 4px; vertical-align: super; }
.wxpay-qr-wrap {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--lp-line, #E4D3B8);
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -8px rgba(40,25,15,.18);
}
.wxpay-qr-wrap img { display: block; }
.wxpay-qr-placeholder {
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-ink-4, #8A7668); font-size: 14px;
}
.wxpay-status {
  font-size: 15px; font-weight: 600;
  margin-bottom: 14px; letter-spacing: 0.04em;
}
.wxpay-status.pending { color: var(--lp-gold-deep, #8E6023); }
.wxpay-status.paid    { color: #5AA871; }
.wxpay-status.closed  { color: var(--lp-coral-deep, #B54A2C); }
.wxpay-meta {
  font-size: 12px; color: var(--lp-ink-4, #8A7668); line-height: 1.7;
  text-align: center;
  width: 100%;
}
.wxpay-meta code {
  background: var(--lp-cream, #FFF7ED);
  padding: 2px 8px; border-radius: 3px;
  font-size: 11px; color: var(--lp-ink-3, #5B4A40);
}
.wxpay-meta .wxpay-user {
  color: var(--lp-rust, #A04121);
  font-weight: 600;
}
.wxpay-hint {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--lp-line-soft, #EEE1CA);
  font-size: 12px; color: var(--lp-ink-4, #8A7668); line-height: 1.7;
  text-align: center;
  width: 100%;
}