:root {
  --m-bg: #f7f9ff;
  --m-card: rgba(255,255,255,.94);
  --m-card-solid: #ffffff;
  --m-text: #172033;
  --m-muted: #667085;
  --m-soft: #e8eefc;
  --m-line: rgba(31, 45, 73, .1);
  --m-blue: #3178ff;
  --m-blue-strong: #155eef;
  --m-blue-soft: #eaf1ff;
  --m-radius: 24px;
  --m-shadow: 0 16px 42px rgba(31, 65, 130, .11);
  --m-safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: light;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--m-bg); scroll-behavior: smooth; }
body.m-page {
  margin: 0;
  min-height: 100%;
  color: var(--m-text);
  background:
    radial-gradient(circle at 20% 0%, rgba(49,120,255,.16), transparent 32%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 55%, #f7f9ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(72px + var(--m-safe-bottom));
}
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img { max-width: 100%; display: block; }
.m-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: calc(58px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,249,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,45,73,.08);
}
.m-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -.02em; }
.m-brand img { border-radius: 11px; box-shadow: 0 8px 20px rgba(49,120,255,.18); }
.m-header-links { display: flex; align-items: center; gap: 6px; }
.m-header-links a {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #344054;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(31,45,73,.08);
  font-size: 13px;
  font-weight: 700;
}
.m-hero { padding: 18px 16px 20px; }
.m-hero-card, .m-download-card, .m-doc, .m-feature-card, .m-stack-cards > div, .m-steps li, .m-faq-list details {
  background: var(--m-card);
  border: 1px solid rgba(31,45,73,.08);
  box-shadow: var(--m-shadow);
}
.m-hero-card {
  border-radius: 30px;
  padding: 28px 22px 22px;
  overflow: hidden;
  position: relative;
}
.m-hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,120,255,.22), transparent 64%);
  pointer-events: none;
}
.m-kicker, .m-section-head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--m-blue-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.m-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(34px, 10vw, 44px);
  line-height: 1.06;
  letter-spacing: -.06em;
}
.m-hero p, .m-section-head p, .m-feature-card p, .m-stack-cards p, .m-download-card p, .m-faq-list p, .m-steps span {
  color: var(--m-muted);
  line-height: 1.75;
}
.m-hero p { margin: 0; font-size: 16px; }
.m-hero-actions { display: grid; gap: 10px; margin-top: 20px; }
.m-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  font-size: 15px;
  border: 1px solid transparent;
}
.m-btn-primary { color: #fff; background: linear-gradient(135deg, #3178ff, #1457e8); box-shadow: 0 12px 26px rgba(49,120,255,.28); }
.m-btn-ghost { color: #1d48a8; background: rgba(255,255,255,.82); border-color: rgba(49,120,255,.16); }
.m-proof-row { display: flex; gap: 8px; overflow-x: auto; padding-top: 18px; scrollbar-width: none; }
.m-proof-row::-webkit-scrollbar { display: none; }
.m-proof-row span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #2652aa;
  background: var(--m-blue-soft);
}
.m-section { padding: 28px 16px; }
.m-section-head { margin-bottom: 16px; }
.m-section-head h2 {
  margin: 8px 0 0;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -.04em;
}
.m-feature-list, .m-stack-cards, .m-faq-list { display: grid; gap: 12px; }
.m-feature-card { border-radius: var(--m-radius); padding: 20px; }
.m-feature-card em {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--m-blue-soft);
  color: var(--m-blue-strong);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}
.m-feature-card h3 { margin: 14px 0 6px; font-size: 20px; }
.m-feature-card p { margin: 0; font-size: 14px; }
.m-blue-section {
  margin: 10px 12px;
  padding: 24px 16px;
  border-radius: 30px;
  background: linear-gradient(145deg, #edf4ff, #ffffff);
  border: 1px solid rgba(49,120,255,.1);
}
.m-stack-cards > div { border-radius: 20px; padding: 16px; }
.m-stack-cards strong { display: block; margin-bottom: 6px; font-size: 16px; }
.m-stack-cards p { margin: 0; font-size: 14px; }
.m-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; counter-reset: step; }
.m-steps li {
  border-radius: 20px;
  padding: 16px 16px 16px 54px;
  position: relative;
}
.m-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 17px;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  color: #fff;
  background: var(--m-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.m-steps strong { display: block; margin-bottom: 4px; }
.m-privacy-strip { background: rgba(255,255,255,.52); }
.m-inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--m-blue-strong);
  font-weight: 850;
}
.m-download-card { border-radius: 30px; padding: 24px 20px; text-align: center; }
.m-download-icon { display: flex; justify-content: center; margin-bottom: 14px; }
.m-download-icon img { border-radius: 18px; box-shadow: 0 16px 34px rgba(49,120,255,.22); }
.m-download-card h2 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.04em; }
.m-download-card p { margin: 0 0 18px; font-size: 14px; }
.m-download-meta { display: grid; gap: 4px; margin-top: 14px; color: #98a2b3; font-size: 12px; }
.m-faq-list details { border-radius: 18px; padding: 0; overflow: hidden; }
.m-faq-list summary { min-height: 50px; padding: 15px 16px; cursor: pointer; font-weight: 800; list-style: none; }
.m-faq-list summary::-webkit-details-marker { display: none; }
.m-faq-list p { margin: 0; padding: 0 16px 16px; font-size: 14px; }
.m-bottom-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(12px + var(--m-safe-bottom));
  z-index: 70;
  min-height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #3178ff, #1457e8);
  box-shadow: 0 16px 36px rgba(49,120,255,.36);
}
.m-footer { padding: 28px 16px 34px; color: var(--m-muted); font-size: 13px; text-align: center; }
.m-footer-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--m-text); }
.m-footer-brand img { border-radius: 10px; }
.m-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 16px 0 10px; }
.m-footer-links a, .m-icp { color: #3d62b5; font-weight: 750; }
/* Legal pages */
.m-legal-page { background: #fbfcff; padding-bottom: calc(22px + var(--m-safe-bottom)); }
.m-legal-shell { padding: 16px 0 0; }
.m-legal-hero { padding: 18px 16px 14px; }
.m-legal-hero h1 { margin: 10px 0 10px; font-size: 30px; line-height: 1.15; letter-spacing: -.045em; }
.m-legal-hero p { margin: 0; color: var(--m-muted); font-size: 15px; line-height: 1.75; }
.m-meta-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 14px 0 2px; scrollbar-width: none; }
.m-meta-scroll::-webkit-scrollbar { display: none; }
.m-meta-scroll div {
  flex: 0 0 168px;
  border: 1px solid rgba(31,45,73,.08);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
}
.m-meta-scroll span { display: block; margin-bottom: 5px; color: #98a2b3; font-size: 12px; }
.m-meta-scroll strong { display: block; font-size: 13px; line-height: 1.45; }
.m-legal-tabs {
  position: sticky;
  top: calc(58px + env(safe-area-inset-top, 0px));
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 8px 12px;
  background: rgba(251,252,255,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(31,45,73,.06);
  border-bottom: 1px solid rgba(31,45,73,.08);
}
.m-legal-tabs > span {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--m-blue);
  font-size: 13px;
  font-weight: 900;
}
.m-legal-tabs > div { display: flex; gap: 8px; overflow-x: auto; padding-right: 12px; scrollbar-width: none; }
.m-legal-tabs > div::-webkit-scrollbar { display: none; }
.m-legal-tabs a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #40516e;
  background: #fff;
  border: 1px solid rgba(31,45,73,.08);
  font-size: 13px;
  font-weight: 800;
}
.m-legal-tabs a.active { color: #fff; background: #172033; border-color: #172033; }
.m-doc {
  margin: 12px 12px 0;
  border-radius: 26px;
  padding: 18px 16px;
  box-shadow: none;
  background: #fff;
}
.m-doc .policy-doc-head { padding-bottom: 14px; border-bottom: 1px solid var(--m-line); }
.m-doc .policy-badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--m-blue-soft);
  color: var(--m-blue-strong);
  font-size: 12px;
  font-weight: 900;
}
.m-doc h2 { margin: 16px 0 8px; font-size: 22px; line-height: 1.28; letter-spacing: -.03em; scroll-margin-top: 126px; }
.m-doc h3 { margin: 0 0 6px; font-size: 16px; line-height: 1.35; }
.m-doc p, .m-doc li { color: #4f5f78; font-size: 15px; line-height: 1.86; }
.m-doc p { margin: 8px 0; }
.m-doc a { color: var(--m-blue-strong); font-weight: 750; }
.m-doc .policy-summary-grid, .m-doc .policy-detail-grid { display: grid; gap: 10px; margin: 14px 0; }
.m-doc .policy-summary-card, .m-doc .policy-detail-grid > div, .m-doc .callout, .m-doc .policy-contact-list li {
  border-radius: 18px;
  padding: 14px;
  background: #f7f9ff;
  border: 1px solid rgba(31,45,73,.07);
}
.m-doc .policy-summary-card span { color: var(--m-blue-strong); font-weight: 900; font-size: 12px; }
.m-doc .policy-summary-card strong { display: block; margin: 6px 0 2px; }
.m-doc .policy-summary-card p, .m-doc .policy-detail-grid p { margin: 0; font-size: 14px; }
.m-doc .callout { margin: 14px 0; color: #344054; font-size: 14px; line-height: 1.8; }
.m-doc .callout-strong { background: #edf4ff; border-color: rgba(49,120,255,.16); color: #24427e; }
.m-doc .policy-section { padding: 14px 0; border-top: 1px solid rgba(31,45,73,.08); scroll-margin-top: 126px; }
.m-doc .policy-section:first-of-type { border-top: 0; }
.m-doc .policy-contact-list { list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 8px; }
.m-doc .policy-table-wrap { margin: 12px 0; }
.m-doc table, .m-doc thead, .m-doc tbody, .m-doc tr, .m-doc th, .m-doc td { display: block; width: 100%; }
.m-doc thead { display: none; }
.m-doc tr {
  border: 1px solid rgba(31,45,73,.08);
  border-radius: 18px;
  background: #f8faff;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.m-doc td {
  border: 0 !important;
  padding: 8px 0 !important;
  color: #435168;
  font-size: 14px;
  line-height: 1.7;
}
.m-doc td::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 3px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 900;
}
.m-doc .policy-bottom-cta {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, #edf4ff, #fff);
  border: 1px solid rgba(49,120,255,.12);
}
.m-doc .policy-bottom-cta strong, .m-doc .policy-bottom-cta span { display: block; }
.m-doc .policy-bottom-cta span { margin-top: 4px; color: var(--m-muted); font-size: 14px; line-height: 1.65; }
.m-doc .policy-bottom-cta > div:last-child { display: grid; gap: 8px; }
.m-doc .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid rgba(49,120,255,.15);
}
.m-doc .btn-primary { color: #fff; background: var(--m-blue); }
.m-doc .btn-secondary { color: #2450aa; background: #fff; }
html.embed-app body.m-page { background: #fff; padding-bottom: 0; }
html.embed-app .m-header, html.embed-app .m-footer, html.embed-app .m-legal-hero, html.embed-app .m-legal-tabs, html.embed-app .m-bottom-cta { display: none !important; }
html.embed-app .m-legal-shell { padding: 0; }
html.embed-app .m-doc { margin: 0; border: 0; border-radius: 0; padding: 16px 16px calc(24px + var(--m-safe-bottom)); }
html.embed-app .m-doc .policy-section, html.embed-app .m-doc h2 { scroll-margin-top: 12px; }
@media (max-width: 374px) {
  .m-header { padding-left: 12px; padding-right: 12px; }
  .m-brand span { font-size: 14px; }
  .m-header-links a { padding-left: 8px; padding-right: 8px; }
  .m-hero-card { padding: 24px 18px 20px; }
  .m-hero h1 { font-size: 32px; }
  .m-section { padding-left: 12px; padding-right: 12px; }
}
@media (min-width: 768px) {
  body.m-page { max-width: 480px; margin: 0 auto; box-shadow: 0 0 0 1px rgba(31,45,73,.06); }
  .m-bottom-cta { left: 50%; right: auto; width: calc(480px - 32px); transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Mobile split v2: page polish */
body.m-page { overflow-x: hidden; }
.m-header { box-shadow: 0 8px 20px rgba(31,45,73,.035); }
.m-header-links a[aria-current="page"] { color: #fff; background: #172033; border-color: #172033; }
.m-header-links .m-header-cta { color: #fff; background: var(--m-blue); border-color: var(--m-blue); box-shadow: 0 8px 18px rgba(49,120,255,.2); }
.m-hero-card { padding-bottom: 18px; }
.m-hero-preview {
  margin-top: 16px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(237,244,255,.9));
  border: 1px solid rgba(49,120,255,.12);
  position: relative;
  z-index: 1;
}
.m-preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 12px; color: #667085; }
.m-preview-top strong { color: #1d48a8; background: #dbe9ff; border-radius: 999px; padding: 4px 8px; font-size: 11px; }
.m-chat-bubble { max-width: 88%; padding: 10px 12px; border-radius: 16px; font-size: 13px; line-height: 1.55; }
.m-chat-other { color: #344054; background: #fff; border: 1px solid rgba(31,45,73,.08); }
.m-chat-ai { margin: 8px 0 0 auto; color: #163b83; background: #e9f1ff; border: 1px solid rgba(49,120,255,.14); }
.m-mini-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 12px; }
.m-mini-panel span { min-height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; color: #2450aa; background: #fff; border: 1px solid rgba(49,120,255,.12); font-size: 12px; font-weight: 900; }
.m-scene-strip { display: flex; gap: 8px; overflow-x: auto; padding: 12px 2px 0; scrollbar-width: none; }
.m-scene-strip::-webkit-scrollbar { display: none; }
.m-scene-strip span { flex: 0 0 auto; border-radius: 999px; padding: 8px 11px; color: #475467; background: #fff; border: 1px solid rgba(31,45,73,.08); font-size: 12px; font-weight: 800; }
.m-feature-card { position: relative; overflow: hidden; }
.m-feature-card::after { content: ""; position: absolute; right: -26px; top: -26px; width: 90px; height: 90px; border-radius: 50%; background: rgba(49,120,255,.07); }
.m-feature-card > * { position: relative; z-index: 1; }

/* Legal reading polish */
.m-read-progress { position: fixed; left: 0; right: 0; top: calc(58px + env(safe-area-inset-top, 0px)); z-index: 60; height: 3px; background: rgba(49,120,255,.08); pointer-events: none; }
.m-read-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, #3178ff, #12b5cb); border-radius: 999px; transition: width .08s linear; }
.m-legal-hero { padding-top: 14px; }
.m-legal-hero h1 { font-size: 28px; }
.m-meta-scroll { margin-left: -2px; padding-bottom: 6px; }
.m-meta-scroll div { flex-basis: 154px; min-height: 78px; box-shadow: 0 10px 24px rgba(31,65,130,.06); }
.m-legal-tabs { overflow: hidden; }
.m-legal-tabs::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 36px; background: linear-gradient(90deg, rgba(251,252,255,0), rgba(251,252,255,.96)); pointer-events: none; }
.m-legal-tabs > span { min-height: 32px; padding: 7px 10px; box-shadow: 0 8px 18px rgba(49,120,255,.16); }
.m-legal-tabs a { min-height: 32px; padding: 7px 10px; font-size: 12.5px; }
.m-doc { margin-top: 10px; padding: 16px 14px; border-radius: 22px; }
.m-doc .policy-doc-head { margin: -2px -2px 6px; padding: 14px; border: 1px solid rgba(49,120,255,.1); border-radius: 20px; background: linear-gradient(145deg, #f3f7ff, #fff); }
.m-doc .policy-doc-head h2 { margin-top: 10px; font-size: 21px; }
.m-doc .policy-section { padding: 16px 0; }
.m-doc .policy-section > h2 { display: flex; align-items: center; gap: 8px; margin-top: 2px; font-size: 21px; }
.m-doc .policy-section > h2::before { content: ""; flex: 0 0 auto; width: 5px; height: 19px; border-radius: 99px; background: linear-gradient(180deg, #3178ff, #12b5cb); }
.m-doc .policy-section > p:first-of-type { margin-top: 10px; }
.m-doc p, .m-doc li { font-size: 14.5px; line-height: 1.9; }
.m-doc ul:not(.policy-contact-list) { padding-left: 18px; }
.m-doc li + li { margin-top: 6px; }
.m-doc .policy-summary-card, .m-doc .policy-detail-grid > div, .m-doc .callout, .m-doc .policy-contact-list li { box-shadow: 0 8px 22px rgba(31,65,130,.045); }
.m-doc .policy-detail-grid > div h3 { display: flex; align-items: center; gap: 7px; }
.m-doc .policy-detail-grid > div h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--m-blue); box-shadow: 0 0 0 4px rgba(49,120,255,.12); }
.m-doc tr { box-shadow: 0 8px 22px rgba(31,65,130,.045); }
.m-doc td + td { border-top: 1px dashed rgba(31,45,73,.09) !important; }
.m-doc .policy-bottom-cta { margin-bottom: 4px; }
.m-back-top {
  position: fixed;
  right: 14px;
  bottom: calc(16px + var(--m-safe-bottom));
  z-index: 80;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(23,32,51,.88);
  box-shadow: 0 12px 26px rgba(23,32,51,.24);
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.m-back-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
html.embed-app .m-read-progress, html.embed-app .m-back-top { display: none !important; }
html.embed-app .m-doc .policy-doc-head { margin: 0 0 8px; }
@media (max-width: 374px) {
  .m-header-links { gap: 4px; }
  .m-header-links a { font-size: 12px; min-height: 32px; }
  .m-header-links .m-header-cta { display: none; }
  .m-doc { margin-left: 8px; margin-right: 8px; }
  .m-doc p, .m-doc li { font-size: 14px; }
}
@media (min-width: 768px) {
  .m-read-progress { left: 50%; right: auto; width: 480px; transform: translateX(-50%); }
  .m-back-top { right: calc(50% - 226px); }
}


/* Android WebView embed mode v1 */
.m-app-doc-title { display: none; }
html.embed-app,
html.embed-app body {
  background: #ffffff !important;
  scroll-behavior: auto;
}
html.embed-app body.m-page {
  width: 100%;
  max-width: none;
  min-height: 100%;
  margin: 0;
  padding-bottom: 0;
  color: #1f2937;
  background: #ffffff !important;
  box-shadow: none;
}
html.embed-app .m-header,
html.embed-app .m-footer,
html.embed-app .m-legal-hero,
html.embed-app .m-legal-tabs,
html.embed-app .m-read-progress,
html.embed-app .m-back-top,
html.embed-app .m-bottom-cta {
  display: none !important;
}
html.embed-app .m-legal-shell {
  padding: 0;
  background: #ffffff;
}
html.embed-app .m-app-doc-title {
  display: block;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 18px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid #eef2f7;
}
html.embed-app .m-app-doc-title span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #155eef;
  background: #eaf1ff;
  font-size: 12px;
  font-weight: 900;
}
html.embed-app .m-app-doc-title h1 {
  margin: 10px 0 6px;
  color: #101828;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -.035em;
}
html.embed-app .m-app-doc-title p,
html.embed-app .m-app-doc-title small {
  display: block;
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.65;
}
html.embed-app .m-doc {
  margin: 0;
  padding: 12px 18px calc(28px + env(safe-area-inset-bottom, 0px));
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}
html.embed-app .m-doc .policy-doc-head {
  margin: 0 0 10px;
  padding: 14px;
  border: 1px solid #edf2fb;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: none;
}
html.embed-app .m-doc .policy-doc-head h2 {
  margin-top: 8px;
  font-size: 19px;
}
html.embed-app .m-doc .policy-badge {
  background: #eaf1ff;
}
html.embed-app .m-doc .policy-section {
  padding: 15px 0;
  border-top-color: #edf2f7;
  scroll-margin-top: 12px;
}
html.embed-app .m-doc .policy-section > h2 {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -.02em;
  scroll-margin-top: 12px;
}
html.embed-app .m-doc h3 {
  font-size: 15px;
}
html.embed-app .m-doc p,
html.embed-app .m-doc li {
  color: #344054;
  font-size: 15px;
  line-height: 1.86;
}
html.embed-app .m-doc .policy-summary-card,
html.embed-app .m-doc .policy-detail-grid > div,
html.embed-app .m-doc .callout,
html.embed-app .m-doc .policy-contact-list li,
html.embed-app .m-doc tr {
  border-color: #edf2f7;
  background: #f9fbff;
  box-shadow: none;
}
html.embed-app .m-doc .policy-bottom-cta {
  display: none !important;
}
html.embed-app .m-doc table,
html.embed-app .m-doc tr,
html.embed-app .m-doc td {
  box-shadow: none;
}
html.embed-app body.m-home-page {
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}
html.embed-app body.m-home-page .m-hero {
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
}
html.embed-app body.m-home-page .m-hero-card,
html.embed-app body.m-home-page .m-download-card,
html.embed-app body.m-home-page .m-feature-card,
html.embed-app body.m-home-page .m-stack-cards > div,
html.embed-app body.m-home-page .m-steps li,
html.embed-app body.m-home-page .m-faq-list details {
  box-shadow: none;
}
html.embed-app body.m-home-page .m-section {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media (min-width: 768px) {
  html.embed-app body.m-page {
    max-width: none;
    margin: 0;
    box-shadow: none;
  }
}


/* Online polish P0-P3: audit entries, app bridge, legal footer */
.m-audit-links { padding-top: 20px; }
.m-audit-grid { display: grid; gap: 10px; }
.m-audit-grid a {
  display: block;
  min-height: 74px;
  padding: 15px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31,45,73,.08);
  box-shadow: 0 8px 22px rgba(31,65,130,.045);
}
.m-audit-grid strong { display: block; margin-bottom: 5px; color: var(--m-text); font-size: 16px; }
.m-audit-grid span { display: block; color: var(--m-muted); font-size: 13px; line-height: 1.55; }
.m-permission-summary,
.m-legal-keypoints,
.m-cancel-impact,
.m-legal-official {
  margin: 14px 0;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(49,120,255,.12);
  background: linear-gradient(145deg, #f2f7ff, #ffffff);
}
.m-permission-summary h3,
.m-cancel-impact h3 { margin: 0 0 10px; font-size: 17px; letter-spacing: -.02em; }
.m-permission-summary > div,
.m-legal-keypoints,
.m-cancel-impact > div { display: grid; gap: 9px; }
.m-permission-summary article,
.m-legal-keypoints article,
.m-cancel-impact article {
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31,45,73,.07);
}
.m-permission-summary strong,
.m-legal-keypoints strong,
.m-cancel-impact strong { display: block; margin-bottom: 4px; color: #172033; font-size: 14.5px; }
.m-permission-summary span,
.m-legal-keypoints span,
.m-cancel-impact span { display: block; color: #5f6f89; font-size: 13px; line-height: 1.65; }
.m-legal-official {
  display: grid;
  gap: 5px;
  background: #f8fbff;
  border-color: #edf2fb;
  color: #5f6f89;
  font-size: 13px;
  line-height: 1.55;
}
.m-legal-official strong { color: #172033; font-size: 15px; }
.m-legal-official a { color: var(--m-blue-strong); font-weight: 800; }
.m-app-close-button {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #172033;
  box-shadow: 0 14px 32px rgba(23,32,51,.24);
  font-size: 15px;
  font-weight: 900;
}
html.embed-app body.has-app-close { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
html.embed-app .m-permission-summary,
html.embed-app .m-legal-keypoints,
html.embed-app .m-cancel-impact,
html.embed-app .m-legal-official {
  background: #f9fbff;
  border-color: #edf2f7;
  box-shadow: none;
}
html.embed-app .m-audit-links,
html.embed-app .m-audit-grid { display: none !important; }
@media (min-width: 768px) {
  .m-app-close-button { left: 50%; right: auto; width: calc(480px - 32px); transform: translateX(-50%); }
  html.embed-app .m-app-close-button { left: 16px; right: 16px; width: auto; transform: none; }
}

/* Mobile homepage production polish v2 */
.m-home-page .m-top-notice {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #155eef;
  background: rgba(234, 241, 255, .92);
  border: 1px solid rgba(49, 120, 255, .14);
  font-size: 12px;
  font-weight: 900;
}
.m-home-page .m-hero-pro { padding-top: 16px; }
.m-home-page .m-hero-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(49,120,255,.18), transparent 30%),
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(241,246,255,.94));
}
.m-home-page .m-hero-card::before {
  content: "";
  position: absolute;
  left: -58px;
  bottom: 96px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18,181,203,.12), transparent 66%);
  pointer-events: none;
}
.m-home-page .m-hero-actions-inline {
  grid-template-columns: 1.25fr .9fr;
  gap: 9px;
}
.m-home-page .m-proof-row-strong span { background: #fff; color: #2450aa; box-shadow: 0 6px 16px rgba(31,65,130,.05); }
.m-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.m-trust-grid div {
  min-height: 72px;
  padding: 10px 9px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(31,45,73,.08);
}
.m-trust-grid strong,
.m-trust-grid span { display: block; }
.m-trust-grid strong { color: #172033; font-size: 13px; letter-spacing: -.02em; }
.m-trust-grid span { margin-top: 4px; color: #667085; font-size: 11px; line-height: 1.45; }
.m-hero-preview-upgraded { overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }
.m-preview-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -2px 0 10px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
}
.m-select-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 11px;
}
.m-select-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 12px;
  color: #344054;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,45,73,.08);
  font-size: 11.5px;
  font-weight: 850;
  white-space: nowrap;
}
.m-feature-card-pro ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.m-feature-card-pro li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 750;
}
.m-feature-card-pro li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--m-blue);
  box-shadow: 0 0 0 4px rgba(49,120,255,.11);
}
.m-workflow-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(80, 139, 255, .32), transparent 34%),
    linear-gradient(145deg, #172033, #243b74);
  box-shadow: 0 18px 42px rgba(31,45,73,.16);
}
.m-workflow-head span,
.m-workflow-head strong { display: block; }
.m-workflow-head span { color: #9ec5ff; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.m-workflow-head strong { margin-top: 6px; font-size: 17px; line-height: 1.35; }
.m-workflow-steps { display: grid; gap: 9px; margin-top: 14px; }
.m-workflow-steps div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.11);
}
.m-workflow-steps b {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #172033;
  background: #fff;
  font-size: 12px;
}
.m-workflow-steps strong { font-size: 14px; }
.m-workflow-steps em { color: rgba(255,255,255,.72); font-size: 12px; font-style: normal; line-height: 1.45; }
.m-style-section {
  margin: 10px 12px;
  padding: 24px 16px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  border: 1px solid rgba(31,45,73,.07);
}
.m-style-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.m-style-chips::-webkit-scrollbar { display: none; }
.m-style-chips span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #2450aa;
  background: #fff;
  border: 1px solid rgba(49,120,255,.14);
  font-size: 13px;
  font-weight: 850;
}
.m-strength-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(31,45,73,.08);
  box-shadow: 0 10px 26px rgba(31,65,130,.055);
}
.m-strength-card strong { display: block; margin-bottom: 12px; font-size: 16px; }
.m-strength-card > span { display: block; height: 10px; border-radius: 999px; background: #eaf1ff; overflow: hidden; }
.m-strength-card > span i { display: block; width: 40%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #3178ff, #12b5cb); }
.m-strength-card p { margin: 10px 0 0; color: #667085; font-size: 13px; line-height: 1.65; }
.m-scenario-section { padding-top: 22px; }
.m-scenario-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.m-scenario-grid div {
  min-height: 104px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(31,45,73,.08);
  box-shadow: 0 8px 22px rgba(31,65,130,.045);
}
.m-scenario-grid span { display: inline-flex; margin-bottom: 8px; color: #155eef; font-size: 12px; font-weight: 900; }
.m-scenario-grid strong { display: block; color: #172033; font-size: 15px; line-height: 1.35; letter-spacing: -.02em; }
.m-practice-section { background: rgba(255,255,255,.45); }
.m-steps-pro li { background: #fff; }
.m-download-card-pro { overflow: hidden; position: relative; }
.m-download-card-pro::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(49,120,255,.1);
  pointer-events: none;
}
.m-download-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #155eef;
  background: #eaf1ff;
  font-size: 12px;
  font-weight: 900;
}
.m-download-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}
.m-download-meta-grid div {
  padding: 11px 8px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(31,45,73,.07);
}
.m-download-meta-grid span,
.m-download-meta-grid strong { display: block; }
.m-download-meta-grid span { color: #98a2b3; font-size: 11px; font-weight: 800; }
.m-download-meta-grid strong { margin-top: 4px; color: #172033; font-size: 13px; }
.m-download-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px dashed rgba(49,120,255,.22);
}
.m-download-qr img { width: 132px; height: 132px; border-radius: 14px; }
.m-download-qr span { color: #667085; font-size: 12px; font-weight: 750; }
.m-notice-box {
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 16px;
  color: #475467;
  background: #f7f9ff;
  border: 1px solid rgba(31,45,73,.07);
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 374px) {
  .m-home-page .m-hero-actions-inline { grid-template-columns: 1fr; }
  .m-trust-grid { grid-template-columns: 1fr; }
  .m-trust-grid div { min-height: auto; }
  .m-scenario-grid { grid-template-columns: 1fr; }
}

/* Mobile homepage polish v3: nav, hero preview, download button */
.m-home-page .m-header {
  padding-left: 12px;
  padding-right: 12px;
}
.m-home-page .m-header-links {
  gap: 5px;
}
.m-home-page .m-header-links a {
  min-height: 32px;
  padding: 7px 9px;
  font-size: 12.5px;
}
.m-home-page .m-header-links a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, #172033, #2b3f68);
  border-color: rgba(23,32,51,.12);
  box-shadow: 0 8px 18px rgba(23,32,51,.12);
}
.m-home-page .m-brand { gap: 7px; }
.m-home-page .m-brand img { width: 30px; height: 30px; }
.m-home-page .m-brand span { max-width: 98px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.m-hero-preview-upgraded {
  margin-top: 18px;
  padding: 10px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(18,181,203,.20), transparent 36%),
    radial-gradient(circle at 100% 12%, rgba(49,120,255,.24), transparent 34%),
    linear-gradient(145deg, rgba(20,42,86,.96), rgba(42,83,171,.92));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 20px 44px rgba(31,65,130,.18), inset 0 1px 0 rgba(255,255,255,.35);
  overflow: hidden;
  isolation: isolate;
}
.m-preview-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: .75;
}
.m-preview-orbit-a {
  width: 120px;
  height: 120px;
  left: -42px;
  top: -34px;
  background: radial-gradient(circle, rgba(255,255,255,.26), transparent 64%);
}
.m-preview-orbit-b {
  width: 150px;
  height: 150px;
  right: -62px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(18,181,203,.26), transparent 68%);
}
.m-preview-device {
  position: relative;
  z-index: 2;
  padding: 11px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 18px 36px rgba(10,28,70,.22);
}
.m-preview-phone-bar {
  margin: 0 2px 9px;
  color: #7a89a6;
  font-size: 10.5px;
  font-weight: 900;
}
.m-preview-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31,45,73,.07);
  box-shadow: 0 8px 22px rgba(31,65,130,.055);
}
.m-preview-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #3178ff, #12b5cb);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(49,120,255,.22);
}
.m-preview-chat-head div:nth-child(2) { min-width: 0; flex: 1; }
.m-preview-chat-head strong,
.m-preview-chat-head span { display: block; }
.m-preview-chat-head strong { color: #172033; font-size: 14px; line-height: 1.2; }
.m-preview-chat-head span { margin-top: 3px; color: #667085; font-size: 11.5px; font-weight: 750; }
.m-preview-chat-head em {
  flex: 0 0 auto;
  min-width: 34px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #155eef;
  background: #eaf1ff;
  border: 1px solid rgba(49,120,255,.14);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}
.m-preview-chat-area {
  margin-top: 10px;
  padding: 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(247,250,255,.92)),
    radial-gradient(circle at 0 0, rgba(49,120,255,.12), transparent 38%);
  border: 1px solid rgba(31,45,73,.06);
}
.m-hero-preview-upgraded .m-chat-bubble {
  max-width: 84%;
  padding: 10px 12px;
  border-radius: 16px 16px 16px 6px;
  font-size: 12.5px;
  line-height: 1.55;
  box-shadow: 0 8px 18px rgba(31,65,130,.045);
}
.m-ai-suggestion-card {
  margin: 9px 0 0 auto;
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 18px 18px 6px 18px;
  color: #173b83;
  background: linear-gradient(145deg, #eaf2ff, #ffffff);
  border: 1px solid rgba(49,120,255,.16);
  box-shadow: 0 10px 22px rgba(49,120,255,.09);
}
.m-ai-suggestion-card span {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #155eef;
  background: rgba(49,120,255,.10);
  font-size: 10.5px;
  font-weight: 950;
}
.m-ai-suggestion-card p {
  margin: 0;
  color: #173b83;
  font-size: 12.5px;
  line-height: 1.58;
  font-weight: 760;
}
.m-preview-controls {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}
.m-preview-controls span {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border-radius: 14px;
  color: #344054;
  background: #fff;
  border: 1px solid rgba(31,45,73,.07);
  font-size: 11.5px;
  font-weight: 900;
}
.m-preview-controls span::after {
  content: "›";
  color: #98a2b3;
  font-size: 18px;
  line-height: 1;
}
.m-hero-preview-upgraded .m-mini-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
  padding: 7px;
  border-radius: 18px;
  background: rgba(23,32,51,.06);
}
.m-hero-preview-upgraded .m-mini-panel span {
  min-height: 34px;
  border-radius: 13px;
  color: #4f5f78;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.m-hero-preview-upgraded .m-mini-panel span.is-active {
  color: #fff;
  background: linear-gradient(135deg, #3178ff, #1457e8);
  box-shadow: 0 9px 18px rgba(49,120,255,.22);
}

.m-download-card-pro .m-download-primary {
  width: 100%;
  min-height: 58px;
  margin: 2px 0 2px;
  padding: 8px 14px 8px 10px;
  justify-content: flex-start;
  gap: 11px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, #111827, #1f64ff 58%, #12b5cb);
  box-shadow: 0 16px 32px rgba(49,120,255,.28);
}
.m-android-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.m-android-icon svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.m-download-primary > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
  line-height: 1.15;
}
.m-download-primary b {
  display: block;
  color: #fff;
  font-size: 15px;
  letter-spacing: -.01em;
}
.m-download-primary small {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 11px;
  font-weight: 750;
}
@media (max-width: 374px) {
  .m-home-page .m-header-links a { padding-left: 7px; padding-right: 7px; font-size: 12px; }
  .m-home-page .m-brand span { display: none; }
  .m-preview-device { padding: 9px; }
}

/* P9.11.8.5.32: standalone homepage keeps a single download CTA; plugin center is app-embedded only. */
.m-header-links { overflow-x: auto; scrollbar-width: none; max-width: 62vw; }
.m-header-links::-webkit-scrollbar { display: none; }
@media (max-width: 390px) { .m-header-links { max-width: 54vw; } }

/* P9.11.8.5.9.6: mobile homepage CTA density polish. */
.m-home-page .m-hero-actions-inline{
  grid-template-columns:1fr 1fr;
}
.m-quick-entry-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
  margin-top:12px;
}
.m-quick-entry-grid a{
  min-height:68px;
  padding:10px 8px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(49,120,255,.12);
  box-shadow:0 10px 24px rgba(31,65,130,.08);
}
.m-quick-entry-grid strong{
  display:block;
  color:#172033;
  font-size:13px;
  letter-spacing:-.01em;
}
.m-quick-entry-grid span{
  display:block;
  margin-top:4px;
  color:#667085;
  font-size:11px;
  line-height:1.35;
}
@media (max-width: 390px) {
  .m-home-page .m-hero-actions-inline{grid-template-columns:1fr;}
  .m-quick-entry-grid{grid-template-columns:1fr;}
}


/* P9.11.8.5.33 独立站移动端导航统一：首页 / 协议 / 隐私 / 注销 */
.m-header-links{
  max-width:62vw;
  overflow-x:auto;
  scrollbar-width:none;
}
.m-header-links::-webkit-scrollbar{display:none;}
.m-header-links a{
  white-space:nowrap;
  min-height:34px;
}
@media (max-width:390px){
  .m-header-links{max-width:56vw;}
  .m-header-links a{padding-left:7px;padding-right:7px;font-size:12px;}
}
