@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("./assets/fonts/HarmonyOS_Sans_SC_Medium.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --text: #1d3151;
  --muted: #697d9f;
  --blue: #4391ff;
  --blue-deep: #2f73f2;
  --paper: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 56px rgba(79, 120, 189, 0.12);
  --line: rgba(67, 145, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 210, 255, 0.48), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 227, 198, 0.4), transparent 22%),
    linear-gradient(180deg, #f6fbff 0%, #f7fbff 46%, #fbfdff 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 72% 22%, rgba(129, 183, 255, 0.13), transparent 40%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.7) 56%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    linear-gradient(rgba(67, 145, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 145, 255, 0.026) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: url("./assets/images/map.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
}

.hero-section {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 3;
}

.hero-section::before {
  display: none;
}

.hero-section::after {
  display: none;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-map-points {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: #4a7fe6;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 12px rgba(48, 94, 187, 0.2);
  animation: pinFloat 2.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.map-point::before,
.map-point::after {
  content: "";
  position: absolute;
}

.map-point::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.map-point::after {
  width: 10px;
  height: 10px;
  left: 2px;
  bottom: -5px;
  background: #4a7fe6;
  transform: rotate(-45deg);
  z-index: -1;
}

@keyframes pinFloat {
  0% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 0.72;
  }

  50% {
    transform: translate(-50%, -50%) translateY(-4px);
    opacity: 0.92;
  }

  100% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 0.72;
  }
}

.navbar {
  --bs-navbar-padding-y: 0.65rem;
  --nav-bg-opacity: 0;
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 24px));
  z-index: 1200;
  padding-left: 12px;
  padding-right: 12px;
  transition: color 0.2s ease;
}

.navbar::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 12px);
  background: rgba(255, 255, 255, var(--nav-bg-opacity));
  border-bottom: 1px solid rgba(67, 145, 255, calc(var(--nav-bg-opacity) * 0.18));
  box-shadow: 0 10px 24px rgba(36, 69, 125, calc(var(--nav-bg-opacity) * 0.12));
  backdrop-filter: blur(calc(var(--nav-bg-opacity) * 9px));
  z-index: -1;
  pointer-events: none;
}

.navbar-brand {
  margin-right: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-title {
  color: var(--blue);
  font-weight: 700;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  letter-spacing: 0.02em;
}

.navbar-light .navbar-toggler {
  border-color: rgba(67, 145, 255, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.navbar-light .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(67, 145, 255, 0.16);
}

.navbar-nav .nav-link {
  color: #3a4f75;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid transparent;
}

.navbar-nav .nav-link:hover {
  color: var(--blue);
  border-bottom-color: rgba(67, 145, 255, 0.35);
}

.hero-content {
  margin: 0;
  padding: clamp(56px, 10svh, 120px) 0 clamp(24px, 5svh, 48px);
  max-width: 760px;
}

.hero-layout {
  min-height: 0;
  flex: 1 1 auto;
  padding-top: calc(10svh + 84px);
  position: relative;
  z-index: 1;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  position: relative;
  z-index: 2;
}

.phone-stack {
  position: relative;
  width: min(560px, 100%);
  height: 620px;
}

.phone-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 84%);
  margin: 0;
  transform-origin: center center;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  opacity: 0.76;
  filter: drop-shadow(0 16px 30px rgba(64, 97, 170, 0.2));
}

.phone-card img {
  display: block;
  width: 100%;
  height: auto;
}

.card-left {
  transform: translate(-72%, -48%) rotate(-9deg) scale(0.9);
}

.card-center {
  transform: translate(-50%, -52%) rotate(0deg) scale(1.03);
}

.card-right {
  transform: translate(-28%, -46%) rotate(9deg) scale(0.9);
}

.phone-card.is-active {
  opacity: 1;
  z-index: 5;
  transform: translate(-50%, -50%) rotate(0deg) scale(1.12);
  filter: drop-shadow(0 24px 44px rgba(46, 96, 198, 0.28));
}

.hero-title {
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-slogan {
  color: var(--blue-deep);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 0.2rem;
}

.hero-text,
.section-heading p,
.matrix-card p,
.highlight-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  color: #5b7398;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 8px 2px;
}

.hero-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #4c6dd9;
  background: rgba(76, 109, 217, 0.1);
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stat-copy strong {
  display: block;
  color: #0f2345;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-copy p {
  margin: 4px 0 0;
  color: #6d84aa;
  font-size: 0.94rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0 1.15rem;
  border-radius: 14px;
  font-weight: 600;
}

.hero-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions .brand-mark {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.app-btn {
  background: linear-gradient(135deg, #4a56f1 0%, #3a49de 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(67, 89, 243, 0.28);
}

.community-btn {
  border-color: #d7e0ef;
  color: #1c2e4f;
  background: rgba(255, 255, 255, 0.9);
}

.download-qr-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.download-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.download-qr-box {
  width: 164px;
  height: 164px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(67, 145, 255, 0.17) 8px, transparent 8px) 0 0 / 26px 26px,
    linear-gradient(rgba(67, 145, 255, 0.17) 8px, transparent 8px) 0 0 / 26px 26px,
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(67, 145, 255, 0.24);
  box-shadow: 0 14px 28px rgba(67, 113, 191, 0.14), inset 0 0 0 7px rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-qr-box:hover {
  transform: translateY(-2px);
  border-color: rgba(67, 145, 255, 0.38);
  box-shadow: 0 18px 34px rgba(67, 113, 191, 0.2), inset 0 0 0 7px rgba(255, 255, 255, 0.88);
}

.download-qr-box:focus-visible {
  outline: 2px solid rgba(67, 145, 255, 0.62);
  outline-offset: 3px;
}

.download-qr-box span {
  text-align: center;
  color: #3b65c7;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.download-qr-box img {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  object-fit: contain;
  border-radius: 10px;
}

.download-qr-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.qr-modal.is-open {
  display: flex;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 23, 43, 0.5);
  backdrop-filter: blur(4px);
}

.qr-modal-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(67, 145, 255, 0.16);
  box-shadow: 0 24px 56px rgba(21, 39, 72, 0.28);
}

.qr-modal-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.qr-save-btn {
  margin-top: 14px;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a56f1 0%, #3a49de 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(67, 89, 243, 0.28);
  cursor: pointer;
}

.qr-save-btn:hover {
  filter: brightness(1.04);
}

.qr-modal-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #40597f;
  box-shadow: 0 10px 26px rgba(34, 60, 106, 0.28);
  font-size: 1.55rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.section-block {
  padding: 72px 0;
}

.section-block#highlights {
  min-height: auto;
  display: block;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(67, 145, 255, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(100, 121, 183, 0.08);
}

.highlight-card {
  background: var(--paper);
  border: 1px solid rgba(67, 145, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.highlight-card {
  border-radius: 28px;
  padding: 24px 22px 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67, 145, 255, 0.26);
  box-shadow: 0 28px 52px rgba(58, 114, 205, 0.2);
}

.highlight-copy {
  padding: 2px 2px 0;
}

.highlight-copy h3 {
  margin: 14px 0 12px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.highlight-copy p {
  margin: 0;
  line-height: 1.88;
}

.fixed-frame {
  margin-top: 18px;
  margin-bottom: 14px;
  height: 300px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  padding: 0;
}

.fixed-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
}

.theme-art {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(76, 122, 214, 0.12);
}

.theme-art::before,
.theme-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.art-elder {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 170, 80, 0.55), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(255, 140, 40, 0.42), transparent 32%),
    linear-gradient(150deg, #fff0dc 0%, #ffdcae 100%);
}

.art-elder::before {
  width: 58%;
  height: 58%;
  left: 21%;
  top: 18%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffefd5 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 166, 66, 0.4),
    0 14px 24px rgba(210, 123, 34, 0.2);
}

.art-elder::after {
  width: 132px;
  height: 132px;
  right: 10%;
  bottom: 8%;
  background:
    radial-gradient(circle at center, rgba(255, 138, 28, 0.34) 0%, rgba(255, 138, 28, 0.14) 56%, transparent 74%);
}

.art-family {
  background:
    radial-gradient(circle at 14% 18%, rgba(93, 170, 255, 0.44), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(74, 121, 255, 0.36), transparent 32%),
    linear-gradient(150deg, #e8f3ff 0%, #d3e7ff 100%);
}

.art-family::before {
  width: 64%;
  height: 62%;
  left: 17%;
  top: 14%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eaf4ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(92, 154, 255, 0.32),
    0 14px 26px rgba(52, 118, 213, 0.18);
}

.art-family::after {
  width: 148px;
  height: 148px;
  left: 7%;
  bottom: 6%;
  background: radial-gradient(circle at center, rgba(68, 136, 255, 0.3) 0%, rgba(68, 136, 255, 0.11) 58%, transparent 76%);
}

.art-community {
  background:
    radial-gradient(circle at 18% 20%, rgba(140, 150, 255, 0.42), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(90, 113, 242, 0.34), transparent 32%),
    linear-gradient(150deg, #edf0ff 0%, #d9e0ff 100%);
}

.art-community::before {
  width: 66%;
  height: 64%;
  left: 17%;
  top: 14%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #fff 0%, #eef2ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(125, 138, 255, 0.34),
    0 14px 26px rgba(85, 96, 211, 0.18);
}

.art-community::after {
  width: 160px;
  height: 160px;
  right: 8%;
  bottom: 8%;
  background: radial-gradient(circle at center, rgba(86, 108, 240, 0.3) 0%, rgba(86, 108, 240, 0.12) 58%, transparent 76%);
}

.tone-peach {
  background: linear-gradient(180deg, rgba(255, 241, 226, 0.94), rgba(255, 255, 255, 0.92));
}

.tone-blue {
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.94), rgba(255, 255, 255, 0.92));
}

.tone-indigo {
  background: linear-gradient(180deg, rgba(239, 241, 255, 0.94), rgba(255, 255, 255, 0.92));
}

.section-features {
  min-height: auto;
  display: block;
}

.feature-shell {
  border-radius: 30px;
  padding: 34px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.matrix-card {
  border-radius: 28px;
  padding: 22px 20px;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(67, 145, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 145, 255, 0.24);
  box-shadow: 0 20px 40px rgba(58, 114, 205, 0.16);
}

.matrix-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.matrix-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(67, 145, 255, 0.16), rgba(67, 145, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(67, 145, 255, 0.12);
  flex-shrink: 0;
}

.matrix-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.screen-pagination {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(58, 84, 136, 0.35);
  transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.screen-dot:hover {
  transform: scale(1.06);
  background: rgba(67, 145, 255, 0.6);
}

.screen-dot.is-active {
  width: 8px;
  height: 24px;
  background: linear-gradient(135deg, #4b8dff 0%, #3a6cf0 100%);
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .screen-pagination {
    display: none;
  }

  .section-block#highlights {
    min-height: auto;
    display: block;
  }

  .section-features,
  .section-block {
    min-height: auto;
    display: block;
    padding: 54px 0;
  }

  .feature-shell {
    padding: 24px 18px;
  }

  .hero-content {
    max-width: 100%;
  }

  .fixed-frame {
    height: 360px;
  }

}


@media (max-width: 767.98px) {
  .hero-section,
  .hero-section > .container {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-layout {
    flex: 1 1 auto;
  }

  .hero-map-points {
    display: block;
    clip-path: inset(0 0 0 52%);
    opacity: 0.78;
  }

  .hero-section::before {
    display: block;
    background-size: 100% 100%, auto 100%;
    background-position: center, right center;
    opacity: 0.86;
  }

  .hero-section::after {
    display: none;
  }

  .navbar-nav {
    margin-top: 0.5rem;
    padding: 0.35rem;
    border-radius: 12px;
    border: 1px solid rgba(67, 145, 255, 0.12);
    background: rgba(255, 255, 255, 0.86);
  }

  .navbar {
    top: 6px;
    width: calc(100% - 16px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-nav .nav-link {
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(67, 145, 255, 0.08);
    margin-bottom: 0.35rem;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }

  .hero-content {
    text-align: left;
    margin: auto 0;
    padding: clamp(32px, 7svh, 66px) 0 20px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 10vw, 4.1rem);
    line-height: 1.02;
    margin-bottom: 0.35rem;
  }

  .hero-slogan {
    font-size: clamp(2.2rem, 8.6vw, 3.6rem);
    line-height: 1.03;
    margin-top: 0;
    margin-bottom: 0.35rem;
  }

  .hero-text {
    line-height: 1.66;
  }

  .hero-media {
    display: none;
  }

  .hero-actions .btn {
    min-height: 50px;
    padding: 0 1rem;
    font-size: 0.98rem;
  }

  .hero-stats {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero-stat-card {
    width: calc(50% - 5px);
    min-width: 0;
    padding: 8px 0;
    gap: 8px;
  }

  .hero-stat-copy strong {
    font-size: 1.34rem;
  }

  .hero-stat-copy p {
    font-size: 0.84rem;
  }

  .download-qr-group {
    width: 100%;
    gap: 0.75rem;
  }

  .download-qr-box {
    width: 132px;
    height: 132px;
  }

  .download-qr-item p {
    font-size: 0.8rem;
  }

  .section-block {
    padding: 46px 0;
  }

  .fixed-frame {
    height: 300px;
  }

  .matrix-card {
    min-height: auto;
    padding: 16px 14px;
  }

  .matrix-card h3 {
    font-size: 1.1rem;
  }

  .matrix-card p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

}
