/* 观音祈福 · 产品官网样式
   与公司站（xinshicheng.cn 根站）同风格：同一套设计变量、同一套版式骨架；
   自包含（无外部字体 / CDN），可直接静态托管。 */

:root {
  --ink: #10233c;
  --ink-soft: #45607f;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-warm: #fdfaf3;
  --brand: #16457a;
  --brand-2: #2b7cc4;
  --gold: #b8891f;
  --gold-soft: #d9b264;
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }
/* height:auto 必须写：<img width height> 属性会作为 CSS 呈现提示生效，
   只覆盖 width（如 width:100%）而不管 height 时，浏览器会按属性里的 height 拉伸图片 */
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 36px; height: 36px; border-radius: 9px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; font-size: 17px; display: flex; align-items: center; justify-content: center;
}
.brand .txt { display: flex; flex-direction: column; line-height: 1.2; }
.brand .txt b { font-size: 15px; font-weight: 650; letter-spacing: .2px; }
.brand .txt span { font-size: 11.5px; color: var(--ink-soft); letter-spacing: .3px; }

nav.top { display: flex; gap: 4px; flex-wrap: wrap; }
nav.top a { color: var(--ink-soft); font-size: 14.5px; padding: 7px 11px; border-radius: 8px; }
nav.top a:hover { color: var(--brand); background: var(--bg-soft); text-decoration: none; }
nav.top a.on { color: var(--brand); font-weight: 600; }

/* ---------- hero ---------- */
.hero {
  padding: 62px 0 54px;
  background:
    radial-gradient(780px 340px at 88% 0%, #fdf3e2 0%, rgba(253, 243, 226, 0) 68%),
    radial-gradient(760px 340px at 6% -10%, #e9f1fb 0%, rgba(233, 241, 251, 0) 70%),
    linear-gradient(180deg, #fdfdff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 38px; line-height: 1.28; margin: 0 0 16px; letter-spacing: -.5px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { font-size: 17.5px; color: var(--ink-soft); margin: 0 0 24px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px; font-size: 15px;
  font-weight: 600; border: 1px solid var(--brand); color: #fff; background: var(--brand);
}
.btn:hover { text-decoration: none; filter: brightness(1.08); }
.btn.ghost { background: #fff; color: var(--brand); }
.btn.gold { background: var(--gold); border-color: var(--gold); }

/* 手机外观框 */
.phone {
  width: 100%; max-width: 268px; margin: 0 auto;
  border: 8px solid #101722; border-radius: 30px; background: #101722;
  box-shadow: 0 26px 50px -22px rgba(16, 35, 60, .45);
  overflow: hidden;
}
.phone img { width: 100%; height: auto; border-radius: 22px; }
.phone-cap { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 12px; }

/* 功能条 */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 0; }
.chip {
  font-size: 14px; color: var(--brand); background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 14px;
}

/* ---------- sections ---------- */
section { padding: 54px 0; }
section.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.warm { background: var(--bg-warm); border-top: 1px solid #f2e7d0; border-bottom: 1px solid #f2e7d0; }
h2 { font-size: 26px; margin: 0 0 8px; letter-spacing: -.3px; }
h2 + p.sub { color: var(--ink-soft); margin: 0 0 30px; }
h3 { font-size: 18px; margin: 0 0 8px; }

.grid { display: grid; gap: 20px; }
.grid.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.c2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 20px;
}
.card p { color: var(--ink-soft); margin: 0 0 10px; font-size: 15px; }
.card .ico {
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 14px;
  background: #eef4fb; color: var(--brand); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 15px;
}

/* 功能卡（含真机截图） */
.feature { padding: 0 0 18px; overflow: hidden; display: flex; flex-direction: column; }
.feature .shot {
  background: linear-gradient(180deg, #f2f6fb 0%, #e8eff8 100%);
  padding: 18px 18px 0; display: flex; justify-content: center;
}
.feature .shot img {
  width: 100%; max-width: 236px; border-radius: 16px 16px 0 0;
  height: auto;            /* 别删：clamp 住 width 的同时必须放开 height，否则被 HTML height 属性拉伸 */
  align-self: flex-start;  /* .shot 是 flex 行容器，默认 stretch 会把图纵向拉满卡片高度 */
  border: 6px solid #101722; border-bottom: 0;
  box-shadow: 0 14px 30px -18px rgba(16, 35, 60, .5);
}
.feature .body { padding: 18px 20px 0; flex: 1; }
.feature .tag {
  display: inline-block; font-size: 12.5px; color: var(--gold); background: #fdf6e7;
  border: 1px solid #f2e2c2; border-radius: 999px; padding: 3px 10px; margin-bottom: 10px;
}
.feature p { font-size: 14.5px; margin: 0; }

ul.ticks { list-style: none; margin: 0; padding: 0; }
ul.ticks li { position: relative; padding-left: 24px; margin-bottom: 8px; color: var(--ink-soft); font-size: 15px; }
/* 勾选用内联 SVG（不用 ✓ 字符当图标；专家模型-ui审美员 §通用） */
ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.2 8.6l3.9 3.9 7.7-8.8' fill='none' stroke='%232b7cc4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

table.info { width: 100%; border-collapse: collapse; font-size: 15px; }
table.info th, table.info td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.info th { width: 30%; color: var(--ink-soft); font-weight: 600; background: #fafcff; }
table.info tr:last-child th, table.info tr:last-child td { border-bottom: 0; }

.en { font-size: 14.5px; color: var(--ink-soft); }
.en h3 { color: var(--ink); font-size: 15.5px; margin-bottom: 6px; }

.note {
  border-left: 3px solid var(--gold); background: #fffaf0; padding: 12px 16px;
  border-radius: 0 10px 10px 0; font-size: 14.5px; color: #6b5020; margin: 18px 0 0;
}

/* 下载区 */
.dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.dl .card { display: flex; flex-direction: column; }
.dl .store {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px dashed var(--line);
}
.dl .store .gl { font-size: 22px; line-height: 1; color: var(--brand); display: flex; align-items: center; }
.dl .store .gl svg { display: block; }
.dl .store b { font-size: 16px; }
.dl .store span { display: block; font-size: 12.5px; color: var(--ink-soft); }
.badge {
  display: inline-block; font-size: 12.5px; font-weight: 600; border-radius: 6px;
  padding: 3px 9px; background: #eef4fb; color: var(--brand); margin-left: auto;
}
.badge.soon { background: #fdf6e7; color: var(--gold); border: 1px solid #f2e2c2; }
.dl .card p { flex: 1; }

/* ---------- footer ---------- */
footer.site {
  border-top: 1px solid var(--line); background: #fff; padding: 34px 0 40px;
  font-size: 13.5px; color: var(--ink-soft);
}
footer.site .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer.site a { color: var(--ink-soft); }
footer.site .ln { margin-top: 6px; }
footer.site .icp { margin-top: 14px; font-size: 13px; }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 29px; }
  .grid.c3, .grid.c2, .dl { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 40px; }
  header.site .wrap { height: auto; padding: 12px 22px; flex-wrap: wrap; }
  .phone { max-width: 236px; }
}
