/* 晨间信号官网：与小程序同一套基调——暖米色纸面、陶土橙点缀、衬线标题、细边框而非阴影 */
:root {
  --bg: #F4F3EE; --surface: #FFFFFF; --surface-2: #FBFAF7;
  --border: #E8E5DC; --border-strong: #D9D5C9;
  --text: #2B2A27; --text-2: #5F5D56; --muted: #87867F;
  --accent: #C96442; --accent-ink: #A8482A; --accent-soft: #F6E7DF;
  --ok: #3F7A52; --ok-soft: #E6F0E8;
  --serif: Georgia, "Times New Roman", "Songti SC", STSong, "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--serif); }
.kicker { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); }
.muted { color: var(--muted); font-size: 14px; }

/* 顶栏 */
.top { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: flex; align-items: baseline; gap: 10px; color: var(--text); }
.brand .name { font-family: var(--serif); font-size: 22px; }
.brand .en { font-size: 12px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.nav { display: flex; gap: 22px; font-size: 14px; }
.nav a { color: var(--text-2); }
.nav a:hover { color: var(--accent-ink); text-decoration: none; }

/* 首屏 */
.hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; padding: 56px 0 40px; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: 46px; line-height: 1.2; margin: 10px 0 14px; }
.hero .lede { font-size: 18px; color: var(--text-2); margin: 0 0 22px; max-width: 34em; }
.hero .facts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 6px; }
.hero .fact b { display: block; font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.1; }
.hero .fact span { font-size: 13px; color: var(--muted); }
.qr { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 26px 26px 20px; text-align: center; justify-self: end; width: 100%; max-width: 320px; }
.qr img { width: 220px; height: 220px; margin: 0 auto 12px; }
.qr .t { font-size: 15px; }
.qr .s { font-size: 13px; color: var(--muted); margin-top: 4px; }
.qr .search { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--border-strong); font-size: 13px; color: var(--text-2); }
.qr .search code { font-family: inherit; background: var(--accent-soft); color: var(--accent-ink); padding: 2px 8px; border-radius: 999px; }

/* 区块 */
section { padding: 40px 0; border-top: 1px solid var(--border); }
section h2 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 6px 0 22px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 22px 24px; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin: 0 0 8px; }
.card p { color: var(--text-2); margin: 0; font-size: 15px; }
.step { position: relative; }
.step .n { font-family: var(--serif); color: var(--border-strong); font-size: 40px; line-height: 1; margin-bottom: 8px; }

/* 样音 */
.sample { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.sample .card { padding: 26px 28px; }
.sample audio { width: 100%; margin-top: 14px; }
.sample .who { display: flex; gap: 10px; margin-top: 14px; }
.sample .who span { font-size: 13px; padding: 4px 12px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); }
.lines { font-size: 15px; color: var(--text-2); }
.lines p { margin: 0 0 10px; padding-left: 14px; border-left: 3px solid var(--border-strong); }
.lines p b { color: var(--text); font-weight: 500; margin-right: 8px; }

/* 刊物 */
.pubs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pub { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; }
.pub .cn { font-size: 15px; }
.pub .en { font-size: 12px; color: var(--muted); }
.pub .ct { font-size: 12px; color: var(--accent-ink); margin-top: 6px; }
.cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.cats span { font-size: 13px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text-2); }

/* 三种听法 */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.tier.featured { border-color: var(--accent); background: linear-gradient(180deg, #FFF9F5, #FFFFFF); }
.tier .name { font-family: var(--serif); font-size: 20px; }
.tier .price { font-family: var(--serif); font-size: 30px; margin: 6px 0 2px; }
.tier .price small { font-size: 14px; color: var(--muted); font-family: var(--sans); }
.tier .line { font-size: 14px; color: var(--accent-ink); }
.tier p { color: var(--text-2); font-size: 14px; margin: 12px 0 0; }

/* 文章页 */
.doc { max-width: 720px; margin: 0 auto; padding: 24px 24px 56px; }
.doc h1 { font-family: var(--serif); font-weight: 500; font-size: 34px; margin: 18px 0 4px; }
.doc .date { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.doc h2 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 30px 0 10px; }
.doc p, .doc li { color: #3d3b35; font-size: 16px; }
.doc ul { padding-left: 22px; }
.doc table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 12px 0; }
.doc th, .doc td { text-align: left; border-bottom: 1px solid var(--border); padding: 8px 6px; vertical-align: top; }
.doc th { color: var(--muted); font-weight: 500; font-size: 13px; }
.doc .note { background: var(--surface-2); border: 1px dashed var(--border-strong); border-radius: 14px; padding: 14px 18px; color: var(--text-2); font-size: 15px; }

/* 页脚 */
footer { border-top: 1px solid var(--border); padding: 28px 0 40px; font-size: 13px; color: var(--muted); }
footer .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer a { color: var(--text-2); }
footer .beian img { display: inline-block; width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 24px; }
  .hero h1 { font-size: 34px; }
  .qr { justify-self: stretch; max-width: none; }
  .grid3, .tiers { grid-template-columns: 1fr; }
  .sample { grid-template-columns: 1fr; }
  .pubs { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 14px; }
  .nav .hide-m { display: none; }
}
