:root {
  --brand: #0081ff;
  --brand-deep: #0067cc;
  --brand-soft: #e6f2ff;
  --brand-pale: #f2f8ff;
  --ink: #1f2329;
  --ink-soft: #3d4854;
  --muted: #637083;
  --line: #dde7f2;
  --surface: #ffffff;
  --wash: #f7f8fa;
  --blue: #0081ff;
  --amber: #f6c85f;
  --danger: #c2410c;
  --shadow-low: 0 14px 34px rgba(31, 35, 41, 0.07);
  --shadow-mid: 0 24px 64px rgba(0, 81, 163, 0.13);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --max: 1180px;

  --font-nav: 15px;
  --font-eyebrow: 14px;
  --font-body: 16px;
  --font-lead: clamp(16px, 1.7vw, 18px);
  --font-small: 14px;
  --font-micro: 13px;
  --font-tiny: 12px;
  --title-hero: clamp(38px, 5.4vw, 64px);
  --title-page: clamp(34px, 5vw, 56px);
  --title-section: clamp(30px, 4.2vw, 48px);
  --title-subsection: clamp(26px, 3.2vw, 36px);
  --title-card: 20px;
  --title-doc: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(950px 420px at 88% -12%, rgba(0, 129, 255, 0.12), transparent 62%),
    radial-gradient(760px 360px at -8% 42%, rgba(0, 129, 255, 0.07), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 42%, #ffffff 100%);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 35, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 35, 41, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 58%);
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 129, 255, 0.14);
}

button {
  font: inherit;
}

svg {
  display: block;
  flex: 0 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid rgba(0, 129, 255, 0.36);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-130%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 231, 242, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none;
}

.nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #354252;
  font-size: var(--font-nav);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-links a[aria-current="page"] {
  color: var(--brand-deep);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-deep);
  background: var(--brand-pale);
  transform: translateY(-1px);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--font-nav);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(0, 129, 255, 0.25);
}

.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 103, 204, 0.28);
}

.btn-secondary {
  color: var(--brand-deep);
  border-color: rgba(0, 129, 255, 0.26);
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover {
  border-color: rgba(0, 129, 255, 0.44);
  background: var(--brand-soft);
  transform: translateY(-2px);
}

.btn-soft {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-soft:hover {
  color: var(--brand-deep);
  border-color: rgba(0, 129, 255, 0.34);
  transform: translateY(-2px);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  padding: 76px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 86% -18%, rgba(0, 129, 255, 0.12), transparent 64%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.home-hero {
  min-height: 750px;
  padding: 64px 0 66px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(980px 420px at 88% 4%, rgba(0, 129, 255, 0.13), transparent 62%),
    radial-gradient(720px 360px at 0% 100%, rgba(0, 129, 255, 0.06), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 129, 255, 0.22);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(230, 242, 255, 0.72);
  font-size: var(--font-eyebrow);
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0, 129, 255, 0.34);
  animation: pulse 1.9s ease-out infinite;
}

.hero__copy .eyebrow::before {
  display: none;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0, 129, 255, 0.34);
  animation: pulse 1.9s ease-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: var(--title-hero);
  line-height: 1.04;
  font-weight: 950;
}

.hero-title-compact {
  font-size: var(--title-page);
}

.accent {
  color: var(--brand);
}

.hero__title {
  max-width: 720px;
  margin: 22px 0 20px;
  font-size: var(--title-hero);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__title .hl {
  position: relative;
  z-index: 0;
  color: var(--brand);
  white-space: nowrap;
}

.hero__title .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  z-index: -1;
  height: 0.16em;
  border-radius: 6px;
  background: var(--brand-soft);
}

.hero__sub {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.8;
  text-wrap: pretty;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 0 28px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.hero__stat strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 760;
}

.hero__stat strong .hero__unit {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 900;
}

.hero__divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.metric {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(221, 231, 242, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-low);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 760;
}

.visual-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.visual-stage::before,
.visual-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  aspect-ratio: 1;
  border: 1px dashed rgba(0, 129, 255, 0.24);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.visual-stage::before {
  width: min(520px, calc(100vw - 40px));
  animation: circle-rotate-outer 64s linear infinite;
}

.visual-stage::after {
  width: min(430px, calc(100vw - 70px));
  opacity: 0.72;
  animation: circle-rotate-inner 42s linear infinite reverse;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(328px, 88vw);
  min-height: 620px;
  padding: 12px;
  border: 1px solid rgba(31, 35, 41, 0.12);
  border-radius: 44px;
  background: #0e1013;
  box-shadow: 0 34px 80px rgba(20, 24, 30, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: rotate(-2deg);
  animation: float-phone 5.6s ease-in-out infinite;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 118px;
  height: 25px;
  border-radius: 0 0 16px 16px;
  background: #0e1013;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 596px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  background: #ededed;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 42px 16px 13px;
  border-bottom: 1px solid #e3e3e3;
  background: #f7f7f7;
}

.phone-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

.app-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  font-weight: 950;
}

.app-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: var(--font-tiny);
  font-weight: 850;
}

.chat-feed {
  flex: 1;
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 18px 14px;
  background: #fff;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.chat-row.self {
  justify-content: flex-end;
}

.mini-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #e1edff;
}

.mini-avatar.warm {
  background: #fff0bf;
}

.chat-bubble {
  max-width: 232px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #202833;
  background: #fff;
  font-size: var(--font-small);
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(31, 35, 41, 0.04);
}

.self .chat-bubble {
  color: #07345c;
  background: #b8deff;
}

.voice-bars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 6px;
  vertical-align: middle;
}

.voice-bars i {
  width: 4px;
  height: 13px;
  border-radius: 999px;
  background: currentColor;
  animation: wave 1s ease-in-out infinite;
}

.voice-bars i:nth-child(2) {
  height: 21px;
  animation-delay: 0.12s;
}

.voice-bars i:nth-child(3) {
  height: 10px;
  animation-delay: 0.24s;
}

.composer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  padding: 10px 12px 16px;
  border: 0;
  border-top: 1px solid #e3e3e3;
  border-radius: 0;
  background: #f7f7f7;
}

.composer-line {
  flex: 1;
  height: 30px;
  border-radius: 7px;
  background: #fff;
}

.send-button-visual {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(0, 129, 255, 0.24);
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(20, 24, 30, 0.1);
  backdrop-filter: blur(14px);
  font-size: var(--font-small);
  font-weight: 850;
  animation: float-note 4.4s ease-in-out infinite;
}

.floating-note .note-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.floating-note .note-icon svg {
  width: 18px;
  height: 18px;
}

.floating-note small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.floating-note--secure .note-icon {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.floating-note--call .note-icon {
  color: #d98f00;
  background: #fff3dc;
}

.floating-note.left {
  left: 0;
  top: 116px;
}

.floating-note.right {
  right: -4px;
  bottom: 124px;
  animation-delay: -1.4s;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: #fff;
}

.section--alt,
.stats-section,
.scene-section {
  background: #f7f7f7;
}

.section-title {
  margin: 18px 0 14px;
  font-size: var(--title-section);
  line-height: 1.16;
  font-weight: 920;
}

.section-sub {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.75;
}

.center {
  text-align: center;
}

.center .eyebrow,
.center .section-sub {
  margin-right: auto;
  margin-left: auto;
}

.page-head {
  position: relative;
  overflow: hidden;
  padding: 68px 0 58px;
  text-align: center;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(0, 129, 255, 0.1), transparent 60%),
    linear-gradient(180deg, #fff, var(--brand-pale));
}

.page-head__title {
  max-width: 760px;
  margin: 16px auto 14px;
  color: var(--ink);
  font-size: var(--title-page);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.page-head__sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.8;
}

.about-head__sub {
  max-width: 860px;
  white-space: nowrap;
}

.privacy-head__sub {
  max-width: 820px;
  white-space: nowrap;
}

.story {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}

.story__media {
  position: relative;
  overflow: hidden;
  width: 450px;
  max-width: 100%;
  height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(140deg, #0081ff, #3aa0ff);
  box-shadow: var(--shadow-mid);
}

.story__media::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.story__media .glyph {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  padding: 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  filter: none;
  box-shadow: 0 20px 42px rgba(0, 79, 169, 0.24);
}

.story h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: var(--title-subsection);
  font-weight: 920;
  line-height: 1.2;
}

.story p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.75;
}

.story p:last-child {
  margin-bottom: 0;
}

.story b {
  color: var(--ink);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.value {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-low);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}

.value__ic {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.value__ic svg {
  width: 26px;
  height: 26px;
}

.value h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: var(--title-card);
  font-weight: 850;
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-stat {
  text-align: center;
}

.about-stat .n {
  color: var(--brand-deep);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 950;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.about-stat .n .suf {
  font-size: 0.5em;
}

.about-stat .l {
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--font-small);
}

.timeline-zol {
  --timeline-axis-x: 12px;
  position: relative;
  max-width: 760px;
  margin: 48px auto 0;
  display: block;
}

.timeline-zol::before {
  content: "";
  position: absolute;
  left: var(--timeline-axis-x);
  top: 6px;
  bottom: 6px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--brand), var(--brand-soft));
}

.tl-item {
  position: relative;
  padding: 0 0 38px 48px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: var(--timeline-axis-x);
  top: 4px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-soft);
  transform: translateX(-50%);
}

.tl-item .yr {
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.tl-item h4 {
  margin: 4px 0 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.tl-item p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.contact-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-low);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(0, 129, 255, 0.24);
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}

.contact-card__ic {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.contact-card__ic svg {
  width: 28px;
  height: 28px;
}

.contact-card h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
}

.contact-card a.lnk {
  display: inline-block;
  margin-top: 4px;
  color: var(--brand-deep);
  font-size: var(--font-nav);
  font-weight: 850;
}

.company-head {
  padding-bottom: 74px;
}

.company-head__title {
  max-width: 840px;
}

.company-head__sub {
  max-width: 780px;
}

.company-hero-facts {
  max-width: 860px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(0, 129, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(0, 81, 163, 0.1);
  backdrop-filter: blur(14px);
}

.company-hero-fact {
  padding: 20px 24px;
  text-align: left;
}

.company-hero-fact + .company-hero-fact {
  border-left: 1px solid var(--line);
}

.company-hero-fact strong,
.company-hero-fact span {
  display: block;
}

.company-hero-fact strong {
  color: var(--ink);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.company-hero-fact strong em {
  font-size: 0.52em;
  font-style: normal;
  letter-spacing: 0;
}

.company-hero-fact span {
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 700;
}

.company-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: start;
}

.company-profile-card {
  position: sticky;
  top: 98px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(240px 150px at 100% 0%, rgba(0, 129, 255, 0.11), transparent 70%),
    #fff;
  box-shadow: var(--shadow-low);
}

.company-profile-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  background: var(--brand-pale);
}

.company-profile-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.company-profile-label,
.company-panel-label,
.company-ecosystem-label {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: var(--font-micro);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-profile-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--title-card);
  font-weight: 920;
  line-height: 1.35;
}

.company-profile-card > p:not(.company-profile-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.75;
}

.company-profile-list {
  margin: 26px 0 0;
}

.company-profile-list div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.company-profile-list dt {
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 700;
}

.company-profile-list dd {
  margin: 0;
  color: var(--ink);
  font-size: var(--font-micro);
  font-weight: 820;
  text-align: right;
}

.company-narrative {
  padding-top: 4px;
}

.company-narrative h2,
.company-section-heading h2,
.company-compliance-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--title-section);
  font-weight: 920;
  line-height: 1.18;
}

.company-narrative > p:not(.section-kicker) {
  max-width: 48em;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.95;
  text-wrap: pretty;
}

.company-qualification-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-qualification-list > div {
  min-height: 104px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--brand-pale);
}

.company-qualification-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-deep);
  background: #fff;
}

.company-qualification-icon svg {
  width: 21px;
  height: 21px;
}

.company-qualification-list strong,
.company-qualification-list small {
  display: block;
}

.company-qualification-list strong {
  color: var(--ink);
  font-size: var(--font-small);
  font-weight: 900;
  line-height: 1.4;
}

.company-qualification-list small {
  margin-top: 5px;
  color: var(--muted);
  font-size: var(--font-tiny);
  line-height: 1.55;
}

.company-capability-section {
  background:
    radial-gradient(720px 320px at 0% 12%, rgba(0, 129, 255, 0.07), transparent 64%),
    #f7faff;
}

.company-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.company-section-heading > p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.8;
}

.company-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.company-tech-panel,
.company-product-panel,
.company-compliance-copy,
.company-ecosystem {
  border-radius: var(--radius-lg);
}

.company-tech-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 40px;
  color: #fff;
  background:
    radial-gradient(360px 260px at 100% 0%, rgba(255, 255, 255, 0.18), transparent 70%),
    linear-gradient(145deg, #0067cc 0%, #0081ff 72%, #3aa0ff 100%);
  box-shadow: 0 24px 56px rgba(0, 81, 163, 0.2);
}

.company-tech-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.company-tech-panel .company-panel-label {
  color: rgba(255, 255, 255, 0.76);
}

.company-tech-panel h3,
.company-product-panel h3 {
  margin: 0;
  font-size: var(--title-subsection);
  font-weight: 920;
  line-height: 1.2;
}

.company-tech-panel h3 {
  color: #fff;
}

.company-tech-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.company-tech-stack span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  font-size: var(--font-small);
  font-weight: 820;
}

.company-system-flow {
  position: relative;
  z-index: 1;
  margin-top: 84px;
  display: grid;
  grid-template-columns: max-content 1fr max-content 1fr max-content;
  align-items: center;
  gap: 8px;
}

.company-system-flow span {
  font-size: var(--font-micro);
  font-weight: 850;
  white-space: nowrap;
}

.company-system-flow i {
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.company-product-panel {
  padding: 40px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-low);
}

.company-product-panel > p:not(.company-panel-label):not(.company-ip-note) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.9;
  text-wrap: pretty;
}

.company-product-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.company-product-features span {
  position: relative;
  padding: 11px 12px 11px 30px;
  border-radius: 10px;
  color: var(--brand-deep);
  background: var(--brand-pale);
  font-size: var(--font-small);
  font-weight: 850;
}

.company-product-features span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
}

.company-ip-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: #f8fafc;
  font-size: var(--font-small);
  line-height: 1.75;
}

.company-ip-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.company-compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.company-compliance-copy {
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-low);
}

.company-compliance-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.9;
  text-wrap: pretty;
}

.company-compliance-promise {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--brand-deep);
}

.company-compliance-promise span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-soft);
}

.company-compliance-promise svg {
  width: 22px;
  height: 22px;
}

.company-compliance-promise strong {
  font-size: var(--font-body);
  font-weight: 900;
}

.company-ecosystem {
  padding: 28px;
  background: var(--brand-pale);
}

.company-ecosystem-label {
  margin-bottom: 16px;
}

.company-ecosystem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(0, 129, 255, 0.14);
}

.company-ecosystem-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--brand-deep);
  background: #fff;
}

.company-ecosystem-icon svg {
  width: 23px;
  height: 23px;
}

.company-ecosystem-item strong,
.company-ecosystem-item small {
  display: block;
}

.company-ecosystem-item strong {
  color: var(--ink);
  font-size: var(--font-small);
  font-weight: 900;
}

.company-ecosystem-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: var(--font-tiny);
  line-height: 1.45;
}

.company-service-strip {
  margin-top: 24px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(0, 129, 255, 0.18);
  border-radius: var(--radius-md);
  background:
    radial-gradient(380px 130px at 88% 0%, rgba(0, 129, 255, 0.1), transparent 72%),
    #fff;
}

.company-service-strip p {
  margin: 0 0 5px;
  color: var(--brand-deep);
  font-size: var(--font-micro);
  font-weight: 900;
}

.company-service-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--title-card);
  font-weight: 900;
}

.company-service-strip .btn {
  min-width: 150px;
  flex: 0 0 auto;
}

.policy-section-wrap {
  padding-top: 56px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-low);
}

.toc h5 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: var(--font-small);
  line-height: 1.4;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.toc a:hover,
.toc a:focus-visible {
  border-left-color: rgba(0, 129, 255, 0.4);
  background: var(--brand-pale);
  color: var(--brand-deep);
}

.policy-body {
  min-width: 0;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 36px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: var(--brand-pale);
  color: var(--ink-soft);
  font-size: var(--font-small);
}

.policy-meta b {
  color: var(--brand-deep);
}

.policy-section {
  scroll-margin-top: 92px;
  margin-bottom: 44px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--title-doc);
  font-weight: 900;
  line-height: 1.35;
}

.policy-section h3 .idx {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 850;
}

.policy-section p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.8;
}

.policy-section ul.bullets {
  margin: 8px 0 12px;
  padding: 0 0 0 4px;
  list-style: none;
}

.policy-section ul.bullets li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.7;
}

.policy-section ul.bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
}

.policy-section ul.bullets li b {
  color: var(--ink);
}

.policy-section a {
  color: var(--brand-deep);
  font-weight: 850;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.home-section {
  padding-top: 36px;
}

.home-section .section-header {
  margin-bottom: 51px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.center .section-kicker,
.section-header.center p {
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.section h2,
.page-content h2 {
  font-size: var(--title-section);
  line-height: 1.16;
  font-weight: 920;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.85;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-low);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bento-card:hover {
  border-color: rgba(0, 129, 255, 0.34);
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(0, 81, 163, 0.12);
}

.bento-card.large {
  grid-column: span 6;
}

.bento-card.medium {
  grid-column: span 4;
}

.bento-card h3 {
  margin-top: 18px;
  font-size: var(--title-card);
  font-weight: 900;
}

.bento-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon-tile {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scene-card {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.scene-card h3 {
  margin-top: 20px;
  font-size: var(--title-card);
}

.scene-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(520px 120px at 50% 0%, rgba(0, 129, 255, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.86);
}

.trust-strip-inner {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: var(--font-body);
  font-weight: 720;
  text-align: center;
}

.trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-radius: 2px;
  color: #ffb400;
  line-height: 1;
  filter: drop-shadow(0 8px 18px rgba(255, 180, 0, 0.22));
}

.trust-stars svg {
  width: 19px;
  height: 19px;
  display: block;
  overflow: visible;
}

.trust-stars path {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linejoin: round;
}

.trust-rating {
  color: var(--muted);
}

.trust-rating strong {
  color: var(--ink);
  font-weight: 920;
  font-variant-numeric: tabular-nums;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}

.shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-low);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shot:hover {
  border-color: rgba(0, 129, 255, 0.28);
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}

.shot__media {
  height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shot__media--messages {
  background: #ededed;
}

.shot__cap {
  padding: 18px 22px;
}

.shot__cap h4 {
  margin: 0;
  color: var(--ink);
  font-size: var(--font-body);
  font-weight: 850;
}

.shot__cap p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: var(--font-micro);
}

.mini {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.mini__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  font-size: 15px;
  font-weight: 850;
}

.mini__bar--messages {
  background: #f7f7f7;
}

.mini__bar span {
  color: #888;
  font-size: 13px;
  font-weight: 500;
}

.mini__list {
  flex: 1;
  background: #fff;
}

.mini__row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.mini__row:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.mini__av {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 9px;
}

.mini__av--family {
  background: linear-gradient(135deg, #ff9a6b, #ff6b6b);
}

.mini__av--team {
  background: linear-gradient(135deg, #6b8cff, #5a6ee0);
}

.mini__av--friend {
  background: linear-gradient(135deg, #3aa0ff, #0081ff);
}

.mini__av--book {
  background: linear-gradient(135deg, #ffb75e, #ed8f03);
}

.mini__av--contact {
  background: linear-gradient(135deg, #b06bff, #7e5ae0);
}

.mini__rt {
  flex: 1;
  min-width: 0;
}

.mini__rt b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.mini__rt span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini__meta {
  flex: none;
  color: #b5b5b5;
  font-size: 10px;
  text-align: right;
}

.mini__badge {
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  margin-top: 4px;
  margin-left: auto;
  padding: 0 4px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 10px;
  font-weight: 850;
}

.moment {
  flex: 1;
  background: #fff;
}

.moment__cover {
  height: 120px;
  background: linear-gradient(135deg, #0081ff, #3aa0ff);
}

.moment__post {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #f2f2f2;
}

.moment__post .av {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 8px;
}

.moment__post .av--green {
  background: linear-gradient(135deg, #3aa0ff, #0081ff);
}

.moment__post .av--blue {
  background: linear-gradient(135deg, #6b8cff, #5a6ee0);
}

.moment__post .txt b {
  color: #5a6e9e;
  font-size: 13px;
}

.moment__post .txt p {
  margin: 4px 0 8px;
  color: #222;
  font-size: 12px;
  line-height: 1.5;
}

.moment__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.moment__imgs i {
  aspect-ratio: 1;
  display: block;
  border-radius: 4px;
}

.moment__img--blue-1 {
  background: #cfe7ff;
}

.moment__img--blue-2 {
  background: #9fd0ff;
}

.moment__img--blue-3 {
  background: #66b2ff;
}

.moment__img--sand-1 {
  background: #d9c7b0;
}

.moment__img--sand-2 {
  background: #c9b49a;
}

.callface {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 30px;
  color: #fff;
  background: linear-gradient(160deg, #0b4f8f, #062d54);
}

.callface__profile {
  text-align: center;
}

.callface__av {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
}

.callface__av img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
}

.callface__name {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 760;
}

.callface__time {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.7;
}

.callface__ctrl {
  display: flex;
  gap: 22px;
}

.callface__btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.callface__btn svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.callface__btn.red {
  background: #fa5151;
}

.callface__btn.gray {
  background: rgba(255, 255, 255, 0.18);
}

.mini-chart {
  height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
}

.mini-chart span {
  display: block;
  border-radius: 12px 12px 6px 6px;
  background: var(--brand-soft);
  animation: rise 2.8s ease-in-out infinite;
}

.mini-chart span:nth-child(1) {
  height: 38px;
  background: #e1edff;
}

.mini-chart span:nth-child(2) {
  height: 66px;
  background: #d9ecff;
  animation-delay: -0.5s;
}

.mini-chart span:nth-child(3) {
  height: 48px;
  background: #fff0bf;
  animation-delay: -1s;
}

.mini-chart span:nth-child(4) {
  height: 58px;
  background: #cce6ff;
  animation-delay: -1.5s;
}

.stats-band {
  position: relative;
  overflow: hidden;
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, #006fe0 0%, #0081ff 55%, #3aa0ff 100%);
  box-shadow: 0 28px 70px rgba(0, 129, 255, 0.25);
}

.stats-band::before,
.stats-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.stats-band::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -60px;
}

.stats-band::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: 10%;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item .num {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-item .num .suf {
  margin-left: 2px;
  font-size: 0.5em;
}

.stat-item .lbl {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-small);
  font-weight: 760;
}

.cta-final {
  background: #fff;
  text-align: center;
}

.cta-final .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.cta-final .section-sub {
  margin-right: auto;
  margin-left: auto;
}

.cta-final .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.cta-final .btn {
  min-height: 56px;
  padding: 0 30px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: start;
}

.content-panel,
.info-panel,
.value-card,
.download-card,
.doc-panel,
.step-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.content-panel {
  padding: 34px;
}

.content-panel p,
.page-content p {
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.9;
}

.info-panel {
  padding: 26px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.info-list strong {
  display: block;
  color: var(--ink);
}

.info-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 196px;
  padding: 24px;
}

.value-card h3 {
  margin-top: 18px;
  font-size: var(--title-card);
}

.value-card p {
  margin: 9px 0 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item time {
  color: var(--brand-deep);
  font-weight: 900;
}

.timeline-item h3 {
  font-size: var(--title-card);
}

.timeline-item p {
  margin: 6px 0 0;
}

.download-hero-grid {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  text-align: center;
}

.download-hero-copy {
  max-width: 780px;
  margin: 0 auto;
}

.download-hero-copy .eyebrow,
.download-hero-copy .hero-title-compact,
.download-hero-copy .lead {
  margin-right: auto;
  margin-left: auto;
}

.download-hero-copy .hero-actions {
  justify-content: center;
}

.download-hero-actions .btn {
  width: 164px;
}

.download-page .section {
  padding-top: 36px;
}

.download-page .section-header {
  margin-bottom: 51px;
}

.download-page .download-support-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
}

.download-card {
  position: relative;
  min-height: 392px;
  padding: 34px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.download-card:hover {
  border-color: rgba(0, 129, 255, 0.24);
  box-shadow: var(--shadow-mid);
  transform: translateY(-8px);
}

.download-card.featured {
  border-color: rgba(0, 129, 255, 0.46);
  box-shadow: 0 26px 68px rgba(0, 129, 255, 0.14);
}

.download-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: var(--font-tiny);
  font-weight: 900;
  line-height: 1;
}

.download-card .icon-tile {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.download-card .icon-tile-neutral {
  color: var(--ink);
  background: #f0f1f3;
}

.download-card .icon-tile svg {
  width: 36px;
  height: 36px;
}

.download-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.download-card .platform-note {
  margin: 10px 0 10px;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.7;
}

.download-card-qr {
  width: 184px;
  margin: 4px auto 22px;
  text-align: center;
}

.download-card-qr__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.download-card-qr__image-wrap {
  position: relative;
  display: block;
  width: 168px;
  height: 168px;
  margin: 0 auto 9px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 38, 54, 0.08);
}

.download-card-qr__canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.download-card-qr figcaption {
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 800;
  line-height: 1.5;
}

.download-card-qr:hover figcaption {
  color: var(--brand-deep);
}

.download-card-qr__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 0 0 3px #fff;
  transform: translate(-50%, -50%);
}

.download-card-qr__logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.windows-download-panel {
  width: 184px;
  min-height: 197px;
  margin: 4px auto 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.windows-app-preview {
  overflow: hidden;
  border: 1px solid rgba(0, 129, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(150deg, #ffffff 0%, var(--brand-pale) 100%);
  box-shadow: 0 12px 28px rgba(0, 81, 163, 0.1);
}

.windows-app-preview__bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0, 129, 255, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.windows-app-preview__bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b7c4d3;
}

.windows-app-preview__bar > span:first-child {
  background: var(--brand);
}

.windows-app-preview__bar b {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.windows-app-preview__body {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 14px;
  text-align: left;
}

.windows-app-preview__logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 81, 163, 0.12);
}

.windows-app-preview__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.windows-app-preview__copy {
  min-width: 0;
}

.windows-app-preview__copy strong,
.windows-app-preview__copy small {
  display: block;
}

.windows-app-preview__copy strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.windows-app-preview__copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.windows-download-panel__meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--brand-deep);
  font-size: 10px;
  font-weight: 850;
}

.windows-download-panel__meta span {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--brand-soft);
}

.download-version {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-micro);
  line-height: 1.4;
}

.download-version b {
  color: var(--ink);
  font-weight: 900;
}

.download-card > .btn {
  width: 100%;
  margin-top: auto;
}

.download-card > .btn-primary {
  box-shadow: 0 6px 14px rgba(0, 129, 255, 0.14);
}

.download-card > .btn-primary:hover {
  box-shadow: 0 8px 18px rgba(0, 103, 204, 0.18);
}

.download-card .btn[aria-disabled="true"] {
  opacity: 0.62;
  cursor: wait;
  pointer-events: none;
}

.download-backups {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.download-backups[hidden] {
  display: none;
}

.download-backups .btn {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  font-size: var(--font-micro);
}

.download-note {
  margin: 14px 0 0;
  color: var(--brand-deep);
  font-size: var(--font-micro);
  font-weight: 820;
  line-height: 1.7;
}

.qr-section {
  padding-top: 22px;
}

.download-page .qr-section {
  padding-top: 86px;
}

.qr-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(292px, 337px);
  gap: 48px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.qr-band__copy {
  max-width: 660px;
}

.qr-band__copy .section-kicker {
  margin-bottom: 16px;
}

.qr-band h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 920;
  line-height: 1.18;
}

.qr-band__copy > p:not(.section-kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.8;
}

.qr-band__copy .qr-desc {
  white-space: nowrap;
}

.qr-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: var(--font-small);
  font-weight: 820;
}

.qr-check {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.qr-check svg {
  width: 15px;
  height: 15px;
}

.qr-visual {
  display: flex;
  justify-content: flex-end;
  padding-right: 22px;
}

.qr-box {
  width: min(100%, 270px);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-mid);
}

.qr-img {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 14px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.qr-code-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qr-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.qr-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: none;
}

.qr-cap {
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 820;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card,
.faq-card {
  padding: 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.step-card h3,
.faq-card h3 {
  margin-top: 18px;
  font-size: var(--title-card);
}

.step-card p,
.faq-card p {
  color: var(--muted);
}

.doc-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.doc-nav {
  position: sticky;
  top: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-low);
}

.doc-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 800;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.doc-nav a:hover {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.doc-panel {
  padding: 36px;
}

.doc-panel h2,
.doc-panel h3 {
  scroll-margin-top: 110px;
}

.doc-panel h2 {
  margin-top: 0;
  font-size: var(--title-subsection);
}

.doc-panel h3 {
  margin-top: 34px;
  font-size: var(--title-doc);
}

.doc-panel p,
.doc-panel li {
  color: #566475;
  font-size: var(--font-body);
  line-height: 1.95;
}

.doc-panel ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.doc-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: var(--font-small);
  font-weight: 760;
}

.section .story h2 {
  font-size: var(--title-subsection);
  line-height: 1.2;
}

.section .faq-card h2 {
  font-size: var(--title-card);
  line-height: 1.32;
  font-weight: 900;
}

.site-footer {
  padding: 64px 0 16px;
  color: #c7cbd1;
  background: #0e1013;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer .brand {
  width: fit-content;
  margin-bottom: 16px;
  color: #fff;
}

.footer__about {
  max-width: 280px;
  margin: 0;
  color: #888f99;
  font-size: var(--font-small);
  line-height: 1.7;
}

.footer__col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: var(--font-small);
  font-weight: 760;
}

.footer__col a {
  display: block;
  padding: 6px 0;
  color: #888f99;
  font-size: var(--font-small);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--brand);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 12px;
  padding-top: 24px;
  color: #6b7280;
  font-size: var(--font-micro);
}

.footer__bottom a {
  color: #6b7280;
}

.footer__bottom a:hover {
  color: var(--brand);
}

.mobile-bottom-nav {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.in,
.js .reveal.shown {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 14px rgba(0, 129, 255, 0);
  }
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes float-note {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes circle-rotate-outer {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes circle-rotate-inner {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

@keyframes rise {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1080px) {
  .bento-card.large,
  .bento-card.medium {
    grid-column: span 6;
  }

  .scene-grid,
  .values,
  .about-stats,
  .contact-grid,
  .values-grid,
  .download-grid,
  .steps-grid,
  .showcase-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 920px) {
  .hero-grid,
  .story,
  .qr-band,
  .split-grid,
  .doc-layout,
  .policy-layout,
  .company-overview-grid,
  .company-capability-grid,
  .company-compliance-grid {
    grid-template-columns: 1fr;
  }

  .company-profile-card {
    position: static;
  }

  .company-tech-panel {
    min-height: 380px;
  }

  .story {
    gap: 40px;
  }

  .visual-stage {
    min-height: 560px;
  }

  .doc-nav,
  .toc {
    position: static;
  }

  .story__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    height: auto;
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .nav {
    width: min(var(--max), calc(100% - 28px));
    min-height: 68px;
  }

  .nav-panel {
    position: static;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links {
    display: none;
  }

  .nav-panel > .btn {
    width: auto;
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .page-hero {
    padding: 54px 0 52px;
  }

  .home-hero {
    min-height: auto;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero__meta {
    gap: 14px 18px;
  }

  .hero__divider {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__brandcol {
    grid-column: 1 / -1;
  }

  .footer__col {
    display: none;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: calc(10px + 72px + env(safe-area-inset-bottom));
  }

  .footer__top {
    padding-bottom: 14px;
  }

  .site-footer .brand {
    margin-bottom: 8px;
  }

  .footer__about {
    max-width: none;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 10px;
    line-height: 1.45;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 -12px 34px rgba(31, 35, 41, 0.1);
    backdrop-filter: blur(16px);
    transition: background-color 0.2s ease;
  }

  .mobile-bottom-nav.is-at-page-bottom {
    background: rgba(255, 255, 255, 1);
  }

  .mobile-bottom-nav a {
    min-width: 0;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-bottom-nav svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav span {
    display: block;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: var(--brand-deep);
    background: var(--brand-soft);
  }
}

@media (max-width: 640px) {
  :root {
    --title-hero: 42px;
    --title-page: 38px;
    --title-section: 32px;
    --title-subsection: 28px;
    --title-card: 19px;
    --title-doc: 20px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero__meta {
    width: fit-content;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    justify-items: center;
    column-gap: 22px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero__stat {
    width: auto;
    min-width: 66px;
    text-align: center;
  }

  .hero__meta .hero__stat:last-child {
    min-width: 121px;
    transform: none;
  }

  .hero__stat strong {
    font-size: 22px;
    white-space: nowrap;
  }

  .hero__stat strong,
  .hero__stat span {
    text-align: center;
  }

  .download-hero-copy,
  .download-hero-copy .hero-title-compact,
  .download-hero-copy .lead,
  #download-options .section-header,
  #download-options .section-header h2,
  #download-options .section-header p {
    max-width: calc(100vw - 40px);
  }

  .download-hero-copy .hero-title-compact {
    font-size: 34px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  #download-options .section-header h2 {
    font-size: 30px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .about-head__sub,
  .privacy-head__sub {
    white-space: normal;
  }

  .visual-stage {
    min-height: 500px;
  }

  .phone-shell {
    width: min(326px, 92vw);
    border-radius: 34px;
  }

  .phone-screen {
    min-height: 492px;
    border-radius: 25px;
  }

  .floating-note {
    font-size: 12px;
  }

  .floating-note.left {
    top: 58px;
  }

  .floating-note.right {
    right: 0;
    bottom: 58px;
  }

  .section {
    padding: 40px 0;
  }

  .home-section {
    padding-top: 28px;
  }

  .home-section .section-header {
    margin-bottom: 34px;
  }

  .trust-strip-inner {
    min-height: auto;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .trust-rating {
    max-width: 320px;
    line-height: 1.55;
  }

  .download-page .section {
    padding-top: 10px;
  }

  .download-page .download-support-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .qr-section {
    padding-top: 40px;
  }

  .download-page .qr-section {
    padding-top: 40px;
  }

  .qr-band {
    gap: 24px;
    padding: 30px 22px;
    justify-items: center;
    text-align: center;
  }

  .qr-band__copy {
    display: contents;
  }

  .qr-band__copy .section-kicker {
    order: 1;
    margin-bottom: 0;
  }

  .qr-visual {
    order: 2;
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }

  .qr-band h2 {
    order: 3;
    width: 100%;
    margin-top: 4px;
  }

  .qr-band__copy .qr-desc {
    order: 4;
    max-width: 320px;
    white-space: normal;
  }

  .qr-feature {
    order: 5;
    width: min(100%, 320px);
    justify-content: center;
  }

  .qr-box {
    width: min(100%, 248px);
    padding: 20px;
  }

  .qr-img {
    width: 188px;
    height: 188px;
  }

  .bento-grid,
  .scene-grid,
  .values,
  .about-stats,
  .contact-grid,
  .values-grid,
  .download-grid,
  .steps-grid,
  .showcase-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large,
  .bento-card.medium {
    grid-column: span 1;
  }

  .content-panel,
  .doc-panel,
  .toc,
  .stats-band {
    padding: 24px;
  }

  .policy-meta {
    padding: 14px 16px;
  }

  .policy-section h3 {
    align-items: flex-start;
    font-size: 19px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company-head {
    padding-bottom: 52px;
  }

  .company-hero-facts {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .company-hero-fact {
    padding: 17px 20px;
    text-align: center;
  }

  .company-hero-fact + .company-hero-fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .company-profile-card,
  .company-product-panel,
  .company-compliance-copy,
  .company-ecosystem {
    padding: 26px;
  }

  .company-qualification-list {
    grid-template-columns: 1fr;
  }

  .company-section-heading {
    margin-bottom: 30px;
  }

  .company-tech-panel {
    min-height: 350px;
    padding: 28px;
  }

  .company-system-flow {
    margin-top: 58px;
    gap: 6px;
  }

  .company-product-features {
    grid-template-columns: 1fr;
  }

  .company-service-strip {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .company-service-strip .btn {
    width: 100%;
  }

  .site-footer {
    padding-bottom: calc(10px + 72px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 首屏以下内容在接近视口时再参与绘制，减少长页面首次渲染成本。 */
@supports (content-visibility: auto) {
  main > .section:not(:first-child),
  main > .news-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }

  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 240px;
  }
}

/* 小屏设备优先保证交互流畅，保留版式但停止纯装饰性持续动画。 */
@media (max-width: 640px), (hover: none) {
  body::before {
    display: none;
  }

  .site-header {
    background: #fff;
    backdrop-filter: none;
  }

  .eyebrow::before,
  .eyebrow .dot,
  .visual-stage::before,
  .visual-stage::after,
  .phone-shell,
  .floating-note {
    animation: none;
  }
}

/* 众聊页面组件 */
.hero-aside {
  width: min(360px, 100%);
  margin: 32px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-low);
}

.hero-aside p {
  margin: 16px 0 0;
  font-size: var(--font-small);
  font-weight: 750;
}

.platform-list {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.platform-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

.platform-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-deep);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: var(--font-small);
  font-weight: 900;
}

.stats-grid > div {
  position: relative;
}

.stats-grid > div > strong {
  display: block;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 900;
}

.stats-grid > div > span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-small);
}

.cta-final .section-sub {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted);
  font-size: var(--font-lead);
  line-height: 1.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 22px 0 0;
}

.footer-links a {
  color: #aeb6c1;
  font-size: var(--font-small);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #6b7280;
  font-size: var(--font-micro);
}

.footer-bottom a {
  color: #8993a0;
}

.site-header .brand-wordmark {
  gap: 8px;
  color: #161b22;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -1.6px;
  line-height: 1;
}

.site-header .brand-wordmark em {
  color: #0067fe;
  font-style: normal;
  margin-left: -7px;
  letter-spacing: -1.8px;
}

.phone-wordmark {
  display: inline-flex;
  gap: 1px;
  align-items: baseline;
  color: #161b22;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.phone-wordmark em {
  color: #0067fe;
  font-style: normal;
  letter-spacing: -0.8px;
}

.news-section {
  padding: 22px 0 80px;
  background:
    radial-gradient(760px 320px at 90% 0%, rgba(0, 129, 255, 0.1), transparent 65%),
    linear-gradient(180deg, #fff 0%, #f5faff 100%);
}

.news {
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-low);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.news-heading .section-kicker {
  margin-bottom: 8px;
}

.news-title {
  font-size: var(--title-subsection);
  line-height: 1.18;
  font-weight: 920;
}

.news-desc {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.75;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-template-control {
  display: none;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  border-bottom: 1px solid rgba(221, 231, 242, 0.86);
}

.news-link {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: var(--font-body);
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s ease, transform 0.2s ease;
}

.news-link::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin: 0 12px 1px 2px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-pale);
}

.news-link:hover {
  color: var(--brand-deep);
  transform: translateX(3px);
}

.news-time {
  flex: none;
  color: var(--muted);
  font-size: var(--font-small);
  font-variant-numeric: tabular-nums;
}

.news-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.news-more a:hover {
  color: var(--brand);
}

.blog-hero {
  padding-bottom: 62px;
}

.blog-section {
  padding: 56px 0 88px;
  background:
    radial-gradient(620px 280px at 100% 0%, rgba(0, 129, 255, 0.08), transparent 70%),
    #f8fbff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.blog-sidebar {
  position: sticky;
  top: 92px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-low);
}

.blog-sidebar__label {
  margin: 0 0 12px;
  padding: 0 10px;
  color: var(--muted);
  font-size: var(--font-tiny);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.blog-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar li + li {
  margin-top: 4px;
}

.blog-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: var(--font-small);
  font-weight: 760;
  transition: color 0.2s ease, background 0.2s ease;
}

.blog-sidebar a:hover,
.blog-sidebar a.active {
  color: var(--brand-deep);
  background: var(--brand-pale);
}

.blog-sidebar__hint {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-tiny);
  line-height: 1.65;
}

.blog-sidebar__hint strong {
  color: var(--ink);
  font-size: var(--font-small);
}

.blog-content {
  min-width: 0;
}

.blog-listing,
.blog-article {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-low);
}

.blog-listing__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.blog-listing__header .section-kicker {
  margin-bottom: 7px;
}

.blog-listing__header h2 {
  font-size: var(--title-subsection);
  line-height: 1.2;
}

.blog-listing__header > span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-pale);
  font-size: var(--font-tiny);
  font-weight: 900;
}

.blog-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-list__item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.blog-list__item:first-child {
  padding-top: 0;
}

.blog-list__media {
  min-height: 142px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--brand-pale);
}

.blog-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-list__item:hover .blog-list__media img {
  transform: scale(1.04);
}

.blog-list__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-list__time,
.post-time {
  color: var(--muted);
  font-size: var(--font-small);
  font-variant-numeric: tabular-nums;
}

.blog-list__body h3 {
  margin-top: 7px;
  font-size: 21px;
  line-height: 1.4;
}

.blog-list__body h3 a:hover {
  color: var(--brand-deep);
}

.blog-list__body p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.75;
}

.blog-list__more {
  margin-top: auto;
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.blog-list__more:hover {
  color: var(--brand);
}

.pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pages a,
.pages span {
  min-width: 36px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  background: #fff;
  font-size: var(--font-small);
}

.pages .active,
.pages a:hover {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.blog-article__header {
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.blog-article__header .section-kicker {
  margin-bottom: 8px;
}

.blog-article__header .title {
  font-size: var(--title-subsection);
  line-height: 1.3;
}

.post-time {
  display: block;
  margin-top: 13px;
}

.blog-article__content {
  color: var(--ink-soft);
  font-size: var(--font-body);
  line-height: 1.9;
  word-break: break-word;
}

.blog-article__content > :first-child {
  margin-top: 0;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
  margin: 34px 0 14px;
  color: var(--ink);
  line-height: 1.35;
}

.blog-article__content h2 {
  font-size: 26px;
}

.blog-article__content h3 {
  font-size: 21px;
}

.blog-article__content p,
.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 18px;
}

.blog-article__content ul,
.blog-article__content ol {
  padding-left: 1.5em;
}

.blog-article__content li + li {
  margin-top: 7px;
}

.blog-article__content a {
  color: var(--brand-deep);
  font-weight: 800;
}

.blog-article__content img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
  border-radius: var(--radius-sm);
}

.article-nav {
  display: grid;
  gap: 8px;
  margin-top: 40px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--brand-pale);
}

.article-nav p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--font-small);
}

.article-nav a {
  color: var(--brand-deep);
  font-weight: 850;
}

.blog-detail-back {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand-deep);
  font-size: var(--font-small);
  font-weight: 900;
}

.blog-detail-back:hover {
  color: var(--brand);
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid > div > strong {
    font-size: 28px;
  }

  .site-header .brand-wordmark {
    font-size: 27px;
  }

  .news-section {
    padding-bottom: 56px;
  }

  .news {
    padding: 30px 22px;
  }

  .news-heading {
    display: block;
  }

  .news-desc {
    margin-top: 14px;
  }

  .news-item {
    min-height: 70px;
    gap: 12px;
  }

  .news-link {
    font-size: var(--font-small);
  }

  .news-link::before {
    margin-right: 9px;
  }

  .news-time {
    font-size: var(--font-tiny);
  }

  .blog-section {
    padding: 34px 0 58px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-listing,
  .blog-article {
    padding: 28px 22px;
  }

  .blog-list__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-list__media {
    min-height: 180px;
  }

  .blog-listing__header {
    align-items: start;
    flex-direction: column;
  }

  .blog-article__header .title {
    font-size: 27px;
  }
}

/* Canonical blog pagination and graceful image fallback. */
.pages ul.pagination{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:8px;list-style:none;margin:0;padding:0}
.pages ul.pagination>li{list-style:none;margin:0;padding:0;border:0;background:transparent}
.pages ul.pagination>li.active>a,.pages ul.pagination>li.active>span{background:var(--brand);border-color:var(--brand);color:#fff}
.pages ul.pagination>li.disabled>span{opacity:.5;cursor:default}
.blog-empty{list-style:none;padding:28px;border:1px solid var(--line);border-radius:16px;color:var(--ink-soft);background:#f5f9ff}
.blog-list__media img.is-fallback{object-fit:contain;padding:32px;background:#f1f7ff}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1!important;transform:none!important;transition:none!important}}
