:root {
  color-scheme: dark;
  --bg: #060504;
  --bg-2: #0c0806;
  --bg-3: #17100c;
  --ink: #fff7ea;
  --text: rgba(255, 247, 234, .9);
  --muted: rgba(255, 247, 234, .68);
  --muted-2: rgba(255, 247, 234, .48);
  --accent: #efd0aa;
  --accent-2: #b8875e;
  --accent-3: #73513b;
  --accent-soft: rgba(239, 208, 170, .115);
  --surface: rgba(255, 247, 234, .045);
  --surface-warm: rgba(185, 129, 82, .075);
  --card: rgba(255, 247, 234, .052);
  --card-strong: rgba(255, 247, 234, .082);
  --line: rgba(255, 247, 234, .072);
  --shadow: 0 30px 82px rgba(0, 0, 0, .48);
  --header-h: 74px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 28px); }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 4%, rgba(239,208,170,.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(184,135,94,.115), transparent 32rem),
    radial-gradient(circle at 50% 94%, rgba(115,81,59,.18), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: linear-gradient(180deg, rgba(6,5,4,.08), rgba(6,5,4,.38));
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { margin: 0; }

::selection { background: rgba(239,208,170,.28); color: var(--ink); }
h1 {
  font-size: clamp(48px, 7.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 720;
  color: #fff4e4;
  text-shadow: 0 1px 0 rgba(255,247,234,.08), 0 18px 48px rgba(0,0,0,.22);
}
h2 {
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.14;
  letter-spacing: -.032em;
  font-weight: 670;
  color: #fff3e2;
}
h3 {
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.22;
  letter-spacing: -.022em;
  font-weight: 640;
}
p { color: var(--muted); line-height: 1.72; font-size: 16px; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.76'/%3E%3C/svg%3E");
}
.halo { position: fixed; border-radius: 999px; filter: blur(90px); pointer-events: none; z-index: -1; }
.halo-a { width: 25rem; height: 25rem; left: -10rem; top: 20vh; background: #efd0aa; opacity: .085; }
.halo-b { width: 32rem; height: 32rem; right: -13rem; top: 12vh; background: #9e6d4c; opacity: .105; }
.halo-c { width: 23rem; height: 23rem; left: 40%; bottom: -11rem; background: #73513b; opacity: .13; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: calc(env(safe-area-inset-top, 0px) + 14px) max(22px, calc((100vw - var(--max)) / 2 + 22px)) 14px;
  background: linear-gradient(180deg, rgba(6,5,4,.92) 0%, rgba(6,5,4,.74) 72%, rgba(6,5,4,0) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background .22s ease, box-shadow .22s ease, min-height .22s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 26px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,5,4,.20), rgba(6,5,4,0));
}
.site-header.is-scrolled {
  background: rgba(7,5,4,.9);
  box-shadow: 0 14px 36px rgba(0,0,0,.30);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 660; letter-spacing: -.012em; }
.brand img { width: 42px; height: 42px; border-radius: 14px; box-shadow: 0 12px 26px rgba(0,0,0,.34); }
.brand span { font-size: 18px; }
.svgfont { display: inline-block; width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  color: var(--muted);
  border-radius: 999px;
  background: rgba(255,247,234,.038);
}
.nav a {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 520;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--ink); background: rgba(239,208,170,.09); }
.nav a.is-active { color: #15100c; background: rgba(239,208,170,.92); }
.nav-cta, .btn.primary, .store-button, .floating-download, .locked-action {
  color: #15100c;
  background: linear-gradient(135deg, #fff3e2 0%, var(--accent) 72%, #d9af83 100%);
  box-shadow: 0 16px 36px rgba(239,208,170,.12);
}
.nav-cta { padding: 11px 18px; border-radius: 999px; font-size: 14px; line-height: 1.2; font-weight: 660; }

.section { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; padding: 104px 0; scroll-margin-top: calc(var(--header-h) + 32px); }
.section-compact { padding: 78px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 13px; line-height: 1.2; font-weight: 560; letter-spacing: .035em; color: rgba(255,247,234,.62); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px rgba(239,208,170,.42); }

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  gap: 76px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 88px;
}
.hero-subtitle { max-width: 590px; margin-top: 24px; font-size: 18px; line-height: 1.74; color: rgba(255,247,234,.71); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-size: 15px; line-height: 1; font-weight: 660; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.secondary { background: rgba(255,247,234,.064); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,247,234,.03); }
.btn.secondary:hover { background: rgba(255,247,234,.105); }

.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-bubble { display: none; }
.device-stage { position: relative; width: min(100%, 540px); height: 640px; }
.device-glow { position: absolute; inset: 17% 5% 6% 18%; border-radius: 50%; background: radial-gradient(circle, rgba(239,208,170,.20) 0%, rgba(184,135,94,.07) 42%, transparent 72%); filter: blur(30px); }
.phone { position: relative; overflow: hidden; margin: 0; width: 310px; aspect-ratio: 921 / 2048; border-radius: 43px; border: 9px solid rgba(239,208,170,.08); background: #060504; box-shadow: var(--shadow); }
.phone::before { content: ""; position: absolute; top: 12px; left: 50%; z-index: 2; width: 92px; height: 24px; transform: translateX(-50%); border-radius: 999px; background: rgba(6,5,4,.84); }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.hero-phone.front { position: absolute; right: 22px; top: 18px; z-index: 2; transform: rotate(-4deg); }
.hero-phone.back { position: absolute; left: 26px; bottom: 10px; transform: rotate(6deg) scale(.9); opacity: .86; }

.listen-section { padding-top: 40px; }
.listen-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.listen-copy { max-width: 760px; }
.listen-copy p { max-width: 560px; margin-top: 13px; color: var(--muted-2); font-size: 16px; }
.listen-tabs { display: inline-flex; gap: 8px; padding: 8px; margin-bottom: 32px; border-radius: 999px; background: rgba(255,247,234,.052); }
.listen-tab { border: 0; border-radius: 999px; background: transparent; color: rgba(255,247,234,.58); padding: 12px 22px; cursor: pointer; font-size: 14px; line-height: 1.2; font-weight: 570; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.listen-tab:hover { color: #fff7ea; background: rgba(255,247,234,.075); }
.listen-tab.is-active { color: #15100c; background: linear-gradient(135deg, #fff3e2 0%, var(--accent) 74%, #d9af83 100%); box-shadow: 0 13px 28px rgba(239,208,170,.13); }
.listen-panel[hidden] { display: none; }
.listen-panel-wrap.clean-panel { padding: 0; border: 0; background: transparent; box-shadow: none; }

.showcase-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 380px); gap: 48px; align-items: center; }
.showcase-copy { min-width: 0; }
.mini-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.mini-panel-head strong { font-size: 20px; letter-spacing: -.014em; font-weight: 650; }
.mini-panel-head span { color: var(--muted-2); font-size: 14px; }
.noise-toolbar { display: grid; gap: 14px; }
.rectangular-noise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.noise-icon-button { border: 0; cursor: pointer; }
.noise-tile {
  min-height: 82px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 20px;
  color: rgba(255,247,234,.9);
  background: linear-gradient(180deg, rgba(255,247,234,.062), rgba(255,247,234,.038));
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,247,234,.035);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.noise-tile:hover { transform: translateY(-2px); background: linear-gradient(180deg, rgba(255,247,234,.088), rgba(255,247,234,.052)); }
.noise-circle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 15px; color: #f1d4b4; background: rgba(239,208,170,.105); }
.noise-circle .svgfont { width: 22px; height: 22px; fill: currentColor; }
.noise-name { font-size: 15px; line-height: 1.35; font-weight: 540; color: rgba(255,247,234,.86); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.noise-tile.is-playing { color: #15100c; background: linear-gradient(135deg, #fff3e2 0%, var(--accent) 72%, #d9af83 100%); box-shadow: 0 18px 38px rgba(239,208,170,.15); }
.noise-tile.is-playing .noise-name { color: #15100c; font-weight: 680; }
.noise-tile.is-playing .noise-circle { color: #15100c; background: rgba(21,16,12,.10); }

.showcase-phone-wrap { position: relative; display: grid; place-items: center; min-height: 610px; }
.showcase-phone-wrap::before { content: ""; position: absolute; width: 370px; height: 370px; border-radius: 50%; background: radial-gradient(circle, rgba(239,208,170,.18) 0%, rgba(239,208,170,.05) 46%, transparent 72%); filter: blur(22px); }
.showcase-phone { width: 306px; border-radius: 42px; }
.showcase-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.locked-content-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 40px;
  border-radius: 28px;
  background: radial-gradient(circle at 90% 12%, rgba(239,208,170,.125), transparent 16rem), linear-gradient(180deg, rgba(255,247,234,.056), rgba(255,247,234,.035));
  transition: transform .22s ease, background .22s ease;
}
.locked-content-card:hover { transform: translateY(-3px); background: radial-gradient(circle at 90% 12%, rgba(239,208,170,.17), transparent 16rem), linear-gradient(180deg, rgba(255,247,234,.082), rgba(255,247,234,.046)); }
.locked-kicker { align-self: flex-start; margin-bottom: 18px; padding: 8px 13px; border-radius: 999px; color: var(--accent); background: var(--accent-soft); font-size: 13px; font-weight: 560; }
.locked-content-card h3 { max-width: 560px; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.18; font-weight: 660; }
.locked-content-card p { max-width: 420px; margin-top: 15px; font-size: 16px; }
.locked-action { align-self: flex-start; margin-top: 26px; padding: 13px 18px; border-radius: 999px; font-size: 14px; font-weight: 660; }
.post-play-cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding: 12px 16px; border-radius: 999px; background: rgba(255,247,234,.06); }
.post-play-cta span { color: var(--muted); }
.post-play-cta a { padding: 10px 15px; border-radius: 999px; background: rgba(255,247,234,.94); color: #15100c; font-weight: 660; }

.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.narrow { max-width: 760px; }
.review-wall { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.review-card { position: relative; overflow: hidden; min-height: 204px; padding: 22px; border-radius: 24px; background: radial-gradient(circle at 100% 0%, rgba(239,208,170,.07), transparent 12rem), linear-gradient(180deg, rgba(255,247,234,.052), rgba(255,247,234,.036)); transition: background .2s ease, transform .2s ease; }
.review-card:hover { transform: translateY(-2px); background: radial-gradient(circle at 100% 0%, rgba(239,208,170,.13), transparent 12rem), linear-gradient(180deg, rgba(255,247,234,.078), rgba(255,247,234,.046)); }
.review-user { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.review-user img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 12px 24px rgba(0,0,0,.22); }
.review-user strong { display: block; font-size: 15px; line-height: 1.25; font-weight: 650; }
.review-user span { display: block; margin-top: 4px; color: var(--muted-2); font-size: 13px; }
.review-card p { color: rgba(255,247,234,.78); font-size: 15px; line-height: 1.72; }

.cta-section { padding-top: 90px; }
.cta-card { position: relative; max-width: 1000px; margin: 0 auto; text-align: center; }
.cta-card::before { content: ""; position: absolute; inset: -26px 8% auto; height: 190px; border-radius: 50%; background: radial-gradient(circle, rgba(239,208,170,.10), transparent 64%); filter: blur(26px); z-index: -1; }
.cta-card > img { width: 82px; height: 82px; border-radius: 22px; margin: 0 auto 18px; box-shadow: 0 20px 44px rgba(0,0,0,.34); }
.cta-glow { display: none; }
.cta-eyebrow { display: inline-flex; margin-bottom: 13px; color: rgba(255,247,234,.58); font-size: 13px; letter-spacing: .04em; }
.cta-card > h2 { max-width: 620px; margin: 0 auto; }
.download-features { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; list-style: none; padding: 0; margin: 34px auto 36px; }
.download-features li { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-height: 154px; padding: 18px; border-radius: 20px; text-align: left; background: linear-gradient(180deg, rgba(255,247,234,.054), rgba(255,247,234,.036)); box-shadow: inset 0 1px 0 rgba(255,247,234,.035); transition: background .2s ease, transform .2s ease; }
.download-features li:hover { transform: translateY(-2px); background: linear-gradient(180deg, rgba(255,247,234,.078), rgba(255,247,234,.046)); }
.feature-icon { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 14px; color: #f1d4b4; background: rgba(239,208,170,.105); }
.feature-icon .svgfont { width: 22px; height: 22px; }
.download-features strong { font-size: 15.5px; line-height: 1.36; font-weight: 650; }
.download-features li > span:not(.feature-icon) { color: var(--muted-2); font-size: 13px; line-height: 1.58; }
.store-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.store-button { display: inline-flex; align-items: center; gap: 13px; min-width: 226px; min-height: 64px; padding: 14px 20px; border-radius: 18px; font-size: 14px; font-weight: 660; text-align: left; transition: transform .2s ease, box-shadow .2s ease; }
.store-button:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(239,208,170,.15); }
.store-icon { display: grid; place-items: center; width: 30px; height: 30px; color: #15100c; }
.store-icon .svgfont { width: 25px; height: 25px; }
.store-copy { display: grid; gap: 4px; }
.store-copy span { color: rgba(21,16,12,.62); font-size: 12px; font-weight: 540; }
.store-copy strong { line-height: 1; font-size: 16px; font-weight: 680; }

.site-footer { width: min(calc(100% - 44px), var(--max)); margin: 0 auto 46px; padding-top: 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; color: var(--muted-2); }
.footer-meta { display: grid; gap: 12px; }
.footer-record { display: flex; flex-wrap: wrap; gap: 8px 14px; color: rgba(255,247,234,.48); font-size: 13px; line-height: 1.6; }
.footer-record a:hover, .footer-links a:hover { color: var(--accent); }
.footer-links { display: grid; grid-auto-flow: column; gap: 20px; color: var(--muted-2); font-size: 14px; }
.floating-download { position: fixed; left: 50%; bottom: 20px; z-index: 60; transform: translate(-50%, 18px); opacity: 0; pointer-events: none; padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 660; transition: opacity .24s ease, transform .24s ease; }
.show-download .floating-download { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; gap: 38px; min-height: auto; text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 560px; }
  .device-stage { height: 540px; }
  .download-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .showcase-layout { grid-template-columns: 1fr; gap: 32px; }
  .showcase-phone-wrap { min-height: 500px; }
  .showcase-phone { width: 270px; }
  .review-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .nav { display: none; }
  .section { width: min(calc(100% - 30px), var(--max)); padding: 88px 0; }
  .section-compact { padding: 74px 0; }
  .site-header { min-height: var(--header-h); padding: calc(env(safe-area-inset-top, 0px) + 12px) 18px 12px; }
  .listen-tabs { width: 100%; }
  .listen-tab { min-width: 0; flex: 1; padding-inline: 12px; }
  .site-footer { width: min(calc(100% - 30px), var(--max)); flex-direction: column; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(40px, 11vw, 56px); }
  h2 { font-size: clamp(28px, 7.8vw, 38px); }
  p { font-size: 15px; }
  .site-header { padding: calc(env(safe-area-inset-top, 0px) + 10px) 14px 10px; }
  .brand img { width: 38px; height: 38px; border-radius: 13px; }
  .brand span { font-size: 17px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .hero { padding-top: 32px; padding-bottom: 62px; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .btn { min-height: 50px; padding-inline: 19px; }
  .hero-visual { min-height: 430px; }
  .device-stage { height: 420px; }
  .phone { width: 205px; border-radius: 32px; border-width: 7px; }
  .phone::before { width: 72px; height: 18px; }
  .hero-phone.front { right: 8px; top: 24px; }
  .hero-phone.back { left: 8px; }
  .listen-intro { margin-bottom: 22px; }
  .listen-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 22px; }
  .listen-tab { padding: 12px 8px; font-size: 13px; }
  .mini-panel-head { flex-direction: column; align-items: flex-start; }
  .rectangular-noise-grid { grid-template-columns: 1fr; }
  .noise-tile { min-height: 72px; padding: 14px 15px; }
  .showcase-phone-wrap { min-height: 430px; }
  .showcase-phone { width: 232px; }
  .locked-content-card { min-height: 310px; padding: 30px 24px; border-radius: 24px; }
  .review-wall, .download-features { grid-template-columns: 1fr; }
  .review-card, .download-features li { min-height: auto; }
  .store-button { width: 100%; justify-content: center; }
  .footer-links { grid-auto-flow: row; gap: 10px; }
  .footer-record { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .btn, .noise-tile, .floating-download, .review-card, .download-features li, .store-button { transition: none; animation: none; }
}


/* SEO content sections */
.seo-section { padding-top: 78px; }
.seo-section .section-heading p,
.faq-section .section-heading p { margin-top: 18px; }
.seo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.seo-card { min-height: 250px; padding: 24px; border-radius: 24px; background: radial-gradient(circle at 100% 0%, rgba(239,208,170,.10), transparent 13rem), linear-gradient(180deg, rgba(255,247,234,.055), rgba(255,247,234,.036)); box-shadow: inset 0 1px 0 rgba(255,247,234,.035); }
.seo-card > span { display: inline-flex; margin-bottom: 22px; color: rgba(239,208,170,.72); font-size: 13px; letter-spacing: .08em; }
.seo-card h3 { margin-bottom: 12px; }
.seo-card p { color: rgba(255,247,234,.72); font-size: 15px; }
.faq-list { max-width: 860px; margin: 34px auto 0; display: grid; gap: 12px; }
.faq-list details { border-radius: 22px; background: linear-gradient(180deg, rgba(255,247,234,.058), rgba(255,247,234,.036)); box-shadow: inset 0 1px 0 rgba(255,247,234,.035); }
.faq-list summary { cursor: pointer; padding: 20px 22px; color: #fff3e2; font-size: 17px; font-weight: 660; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--accent); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { padding: 0 22px 22px; color: rgba(255,247,234,.72); }

@media (max-width: 980px) {
  .seo-grid { grid-template-columns: 1fr; }
  .seo-card { min-height: auto; }
}

/* Mainland China SEO landing links and keyword pages */
.china-seo-section { padding-top: 70px; }
.intent-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.intent-links a { display: grid; gap: 10px; min-height: 148px; padding: 24px; border-radius: 24px; background: radial-gradient(circle at 100% 0%, rgba(239,208,170,.10), transparent 13rem), linear-gradient(180deg, rgba(255,247,234,.055), rgba(255,247,234,.036)); box-shadow: inset 0 1px 0 rgba(255,247,234,.035); }
.intent-links a:hover { transform: translateY(-2px); color: var(--accent); }
.intent-links strong { color: #fff3e2; font-size: 20px; }
.intent-links span { color: rgba(255,247,234,.68); line-height: 1.72; }
.seo-page-main { padding-top: var(--header-h); }
.seo-page-hero { min-height: auto; padding-top: 94px; padding-bottom: 46px; }
.seo-page-hero .section-heading p { margin-top: 20px; }
.center-actions { justify-content: center; margin-top: 32px; }
.seo-page-main .seo-card h2 { font-size: clamp(24px, 3vw, 32px); }

@media (max-width: 980px) {
  .intent-links { grid-template-columns: 1fr; }
  .intent-links a { min-height: auto; }
}
