/* ===== 首页 Home 专属样式 ===== */
.page-home {
  --home-hero-clip: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
  --home-gradient-hero: linear-gradient(135deg, #2A1B5E 0%, #6C4DF6 55%, #12101F 100%);
  --home-feedback-bg: linear-gradient(180deg, #12101F 0%, #1E1836 50%, #12101F 100%);
  --home-archive-bg: linear-gradient(180deg, #F4F2EE 0%, #EFE9E0 100%);
  width: 100%;
  overflow-x: hidden;
  background: #12101F;
  color: #F4F2EE;
}

.page-home .container {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ===== 01 首屏 Hero ===== */
.page-home__hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.page-home__hero .hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home__hero .hero-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home__hero .hero-section__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(163, 255, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 255, 18, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mix-blend-mode: screen;
}

.page-home__hero .hero-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 16, 31, 0.92) 0%, rgba(42, 27, 94, 0.55) 45%, rgba(18, 16, 31, 0.75) 100%);
  z-index: 1;
}

.page-home__hero .hero-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 140px;
}

.page-home__hero .hero-section__badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home__hero .hero-section__loc {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #B8B9C4;
  border: 1px solid rgba(184, 185, 196, 0.4);
  padding: 5px 12px;
  transform: skewX(-8deg);
  display: inline-block;
}

.page-home__hero .hero-section__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: #F4F2EE;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(108, 77, 246, 0.4);
}

.page-home__hero .hero-section__lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  color: #B8B9C4;
  max-width: 620px;
  margin: 0 0 36px;
}

.page-home__hero .hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.page-home__hero .hero-section__cta {
  position: relative;
  overflow: hidden;
  font-size: 17px;
  padding: 16px 36px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  animation: pagehome-btn-scan 3s ease-in-out infinite;
}

@keyframes pagehome-btn-scan {
  0%, 100% { box-shadow: 0 0 18px rgba(163, 255, 18, 0.3); }
  50% { box-shadow: 0 0 36px rgba(163, 255, 18, 0.6); }
}

.page-home__hero .hero-section__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: pagehome-btn-shine 2.8s ease-in-out infinite;
}

@keyframes pagehome-btn-shine {
  0% { left: -80%; }
  50%, 100% { left: 130%; }
}

.page-home__hero .hero-section__secondary {
  font-size: 15px;
  padding: 14px 28px;
  border-color: rgba(244, 242, 238, 0.5);
}

.page-home__hero .hero-section__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-home__hero .hero-section__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #B8B9C4;
}

.page-home__hero .trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A3FF12;
  box-shadow: 0 0 10px rgba(163, 255, 18, 0.8);
  display: inline-block;
}

.page-home__hero .hero-section__visual {
  display: none;
}

/* ===== 版本对比预告 ===== */
.page-home__version {
  position: relative;
  background: #F4F2EE;
  color: #12101F;
  clip-path: var(--home-hero-clip);
  padding-top: 96px;
  padding-bottom: 112px;
  margin-top: -80px;
  z-index: 2;
}

.page-home__version .section-head__tag {
  color: #6C4DF6;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 16px;
}

.page-home__version .section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #12101F;
  margin: 0 0 24px;
}

.page-home__version .version-preview__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #2E3743;
  max-width: 680px;
  margin: 0 0 48px;
}

.page-home__version .version-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.page-home__version .version-preview__item {
  background: #EFE9E0;
  border: 1px solid rgba(46, 55, 67, 0.15);
  border-left: 4px solid #6C4DF6;
  padding: 28px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.page-home__version .version-preview__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(42, 27, 94, 0.12);
}

.page-home__version .version-preview__item-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #2A1B5E;
  margin-bottom: 20px;
}

.page-home__version .version-preview__compare-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.page-home__version .version-preview__bar {
  font-size: 13px;
  font-family: var(--font-mono);
  color: #F4F2EE;
  padding: 6px 12px;
  width: 100%;
  box-sizing: border-box;
}

.page-home__version .version-preview__bar--old {
  background: #2E3743;
}

.page-home__version .version-preview__bar--new {
  background: linear-gradient(90deg, #6C4DF6, #A3FF12);
  width: 55%;
}

.page-home__version .version-preview__item:nth-child(2) .version-preview__bar--new {
  width: 70%;
}

.page-home__version .version-preview__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-home__version .version-preview__stat-label {
  font-size: 14px;
  color: #2E3743;
}

.page-home__version .version-preview__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home__version .version-preview__more {
  text-align: center;
}

/* ===== 适配清单入口 ===== */
.page-home__device {
  background: #12101F;
  position: relative;
  padding-top: 40px;
  padding-bottom: 100px;
  overflow: hidden;
}

.page-home__device .device-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.page-home__device .section-head__tag {
  color: #A3FF12;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 16px;
}

.page-home__device .section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #F4F2EE;
  margin: 0 0 24px;
}

.page-home__device .device-section__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #B8B9C4;
  margin: 0 0 28px;
  max-width: 620px;
}

.page-home__device .device-section__desc strong {
  color: #A3FF12;
}

.page-home__device .device-section__brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.page-home__device .device-section__visual {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  overflow: hidden;
  border: 1px solid rgba(108, 77, 246, 0.5);
}

.page-home__device .device-section__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-home__device .device-section__visual:hover .device-section__img {
  transform: scale(1.03);
}

.page-home__device .device-section__marquee {
  margin-top: 64px;
  overflow: hidden;
  border-top: 1px solid rgba(108, 77, 246, 0.25);
  border-bottom: 1px solid rgba(163, 255, 18, 0.2);
  padding-block: 16px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.page-home__device .device-section__marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: pagehome-marquee 22s linear infinite;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(184, 185, 196, 0.8);
  letter-spacing: 0.2em;
}

@keyframes pagehome-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== 内地粉丝反馈对策 ===== */
.page-home__feedback {
  background: #12101F;
  color: #F4F2EE;
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}

.page-home__feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(108, 77, 246, 0.18), transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(108, 77, 246, 0.12), transparent 50%);
  pointer-events: none;
}

.page-home__feedback .feedback-section__inner {
  position: relative;
  z-index: 1;
}

.page-home__feedback .feedback-section__head {
  margin-bottom: 48px;
}

.page-home__feedback .section-head__tag {
  color: #B967FF;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 16px;
}

.page-home__feedback .section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #F4F2EE;
  margin: 0;
}

.page-home__feedback .feedback-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.page-home__feedback .feedback-section__card {
  background: #1A1626;
  border: 1px solid rgba(108, 77, 246, 0.3);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  padding: 28px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home__feedback .feedback-section__card:hover {
  border-color: #A3FF12;
  box-shadow: 0 0 30px rgba(108, 77, 246, 0.2);
}

.page-home__feedback .feedback-section__card-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #B967FF;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}

.page-home__feedback .feedback-section__card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #F4F2EE;
  margin: 0 0 12px;
}

.page-home__feedback .feedback-section__card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #B8B9C4;
  margin: 0;
}

.page-home__feedback .feedback-section__note {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: #1A1626;
  border-left: 4px solid #A3FF12;
  padding: 24px;
}

.page-home__feedback .feedback-section__note p {
  font-size: 15px;
  line-height: 1.8;
  color: #B8B9C4;
  margin: 0;
}

/* ===== 小屏经济曲线演示 ===== */
.page-home__curve {
  background: #F4F2EE;
  color: #12101F;
  padding-top: 96px;
  padding-bottom: 96px;
}

.page-home__curve .section-head__tag {
  color: #FF7A00;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 16px;
}

.page-home__curve .section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #12101F;
  margin: 0 0 24px;
}

.page-home__curve .curve-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.page-home__curve .curve-section__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #2E3743;
  margin: 0 0 32px;
  max-width: 600px;
}

.page-home__curve .curve-section__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home__curve .curve-section__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #2E3743;
}

.page-home__curve .curve-section__feature-icon {
  color: #FF7A00;
  font-size: 12px;
  margin-top: 5px;
}

.page-home__curve .curve-section__visual {
  position: relative;
}

.page-home__curve .curve-section__demo {
  background: #12101F;
  border: 1px solid rgba(108, 77, 246, 0.4);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 16px 40px rgba(42, 27, 94, 0.2);
}

.page-home__curve .curve-section__demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.page-home__curve .curve-section__demo-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #F4F2EE;
}

.page-home__curve .curve-section__svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-home__curve .curve-section__grid-lines line {
  stroke: rgba(184, 185, 196, 0.18);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.page-home__curve .curve-section__axes line {
  stroke: rgba(184, 185, 196, 0.4);
  stroke-width: 1;
}

.page-home__curve .curve-section__area {
  animation: pagehome-area-grow 2.4s ease-in-out forwards;
  transform-origin: left center;
}

@keyframes pagehome-area-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.page-home__curve .curve-section__line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home__curve .curve-section__line--green {
  animation: pagehome-line-green 2s ease-in-out 0.3s both;
}

@keyframes pagehome-line-green {
  from { stroke-dasharray: 800; stroke-dashoffset: 800; }
  to { stroke-dasharray: 800; stroke-dashoffset: 0; }
}

.page-home__curve .curve-section__line--orange {
  animation: pagehome-line-orange 2.4s ease-in-out 0.6s both;
}

@keyframes pagehome-line-orange {
  from { stroke-dasharray: 700; stroke-dashoffset: 700; }
  to { stroke-dasharray: 700; stroke-dashoffset: 0; }
}

.page-home__curve .curve-section__dot {
  animation: pagehome-dot-pulse 1.5s ease-in-out infinite;
}

.page-home__curve .curve-section__dot--orange {
  animation-delay: 0.2s;
}

.page-home__curve .curve-section__dot--green {
  animation-delay: 0.4s;
}

@keyframes pagehome-dot-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.page-home__curve .curve-section__svg-label {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: #B8B9C4;
}

.page-home__curve .curve-section__demo-slider {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.page-home__curve .curve-section__slider-track {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2E3743 0%, #6C4DF6 50%, #2E3743 100%);
  border-radius: 2px;
  position: relative;
}

.page-home__curve .curve-section__slider-knob {
  position: absolute;
  left: 55%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FF7A00;
  border: 3px solid #F4F2EE;
  box-shadow: 0 0 16px rgba(255, 122, 0, 0.6);
  cursor: grab;
  transform: translateX(-50%);
  animation: pagehome-knob-move 4s ease-in-out infinite alternate;
}

@keyframes pagehome-knob-move {
  0% { left: 20%; }
  100% { left: 80%; }
}

.page-home__curve .curve-section__visual-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

/* ===== 赛事归档入口 ===== */
.page-home__archive {
  background: var(--home-archive-bg);
  color: #12101F;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.page-home__archive .section-head__tag {
  color: #C96F4A;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 16px;
}

.page-home__archive .archive-section__head {
  margin-bottom: 56px;
}

.page-home__archive .section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #12101F;
  margin: 0 0 24px;
}

.page-home__archive .archive-section__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #2E3743;
  max-width: 620px;
}

.page-home__archive .archive-section__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
  padding-left: 28px;
}

.page-home__archive .archive-section__timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #6C4DF6, #C96F4A, #A3FF12);
  opacity: 0.5;
}

.page-home__archive .archive-section__tl-item {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}

.page-home__archive .archive-section__tl-dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6C4DF6;
  border: 3px solid #EFE9E0;
  box-shadow: 0 0 12px rgba(108, 77, 246, 0.5);
}

.page-home__archive .archive-section__tl-item:nth-child(2) .archive-section__tl-dot { background: #A3FF12; }
.page-home__archive .archive-section__tl-item:nth-child(3) .archive-section__tl-dot { background: #FF7A00; }
.page-home__archive .archive-section__tl-item:nth-child(4) .archive-section__tl-dot { background: #B967FF; }

.page-home__archive .archive-section__tl-year {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #6C4DF6;
}

.page-home__archive .archive-section__tl-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #12101F;
}

.page-home__archive .archive-section__tl-desc {
  font-size: 13px;
  color: #2E3743;
  flex-basis: 100%;
}

.page-home__archive .archive-section__img-wrap {
  margin-bottom: 56px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  overflow: hidden;
}

.page-home__archive .archive-section__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-home__archive .archive-section__img-wrap:hover .archive-section__img {
  transform: scale(1.02);
}

.page-home__archive .archive-section__cta {
  text-align: center;
}

/* ===== 备案与信任 ===== */
.page-home__trust {
  background: linear-gradient(135deg, #2A1B5E 0%, #12101F 60%, #12101F 100%);
  color: #F4F2EE;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.page-home__trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #A3FF12, #6C4DF6, #FF7A00, #B967FF);
  background-size: 200% 100%;
  animation: pagehome-grad-line 6s ease-in-out infinite alternate;
}

@keyframes pagehome-grad-line {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.page-home__trust .trust-section__inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.page-home__trust .trust-section__badge-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.page-home__trust .trust-section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #F4F2EE;
  margin: 0 0 24px;
}

.page-home__trust .trust-section__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #B8B9C4;
  max-width: 680px;
  margin: 0 auto 48px;
}

.page-home__trust .trust-section__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  padding: 24px;
  border: 1px solid rgba(108, 77, 246, 0.3);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  background: rgba(18, 16, 31, 0.6);
}

.page-home__trust .trust-section__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home__trust .trust-section__meta-label {
  font-size: 12px;
  color: #B8B9C4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home__trust .trust-section__meta-value {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #A3FF12;
}

.page-home__trust .trust-section__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.page-home__trust .trust-section__stat {
  background: rgba(18, 16, 31, 0.6);
  border-left: 3px solid #6C4DF6;
  padding: 20px;
  text-align: left;
}

.page-home__trust .trust-section__stat:nth-child(2) { border-left-color: #FF7A00; }
.page-home__trust .trust-section__stat:nth-child(3) { border-left-color: #A3FF12; }
.page-home__trust .trust-section__stat:nth-child(4) { border-left-color: #B967FF; }

.page-home__trust .trust-section__stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #F4F2EE;
  margin-bottom: 6px;
}

.page-home__trust .trust-section__stat-label {
  font-size: 13px;
  color: #B8B9C4;
  line-height: 1.5;
}

/* ===== 媒体查询 ===== */
@media (min-width: 640px) {
  .page-home__trust .trust-section__meta {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home__hero .hero-section__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }

  .page-home__hero .hero-section__visual {
    display: block;
    position: relative;
  }

  .page-home__hero .hero-section__visual-frame {
    position: relative;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
    border: 1px solid rgba(163, 255, 18, 0.4);
    overflow: hidden;
    background: #12101F;
  }

  .page-home__hero .hero-section__visual-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.9;
  }

  .page-home__hero .hero-section__visual-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(163, 255, 18, 0.15), transparent);
    animation: pagehome-scan 3s ease-in-out infinite alternate;
    pointer-events: none;
  }

  @keyframes pagehome-scan {
    from { transform: translateY(0); opacity: 0.4; }
    to { transform: translateY(120%); opacity: 1; }
  }

  .page-home__hero .hero-section__visual-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(18, 16, 31, 0.85);
    color: #A3FF12;
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 8px 14px;
    border: 1px solid rgba(163, 255, 18, 0.5);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  }

  .page-home__version .version-preview__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home__device .device-section__layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .page-home__feedback .feedback-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home__feedback .feedback-section__note {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home__curve .curve-section__layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .page-home__archive .archive-section__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-left: 0;
  }

  .page-home__archive .archive-section__timeline::before {
    left: 0;
    right: 0;
    top: 5px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .page-home__archive .archive-section__tl-item {
    padding-left: 0;
    padding-top: 28px;
  }

  .page-home__archive .archive-section__tl-dot {
    left: 0;
    top: 0;
  }

  .page-home__trust .trust-section__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .page-home__hero .hero-section__visual {
    order: -1;
    max-width: 380px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home * {
    animation: none !important;
    transition: none !important;
  }
  html[data-mobile-open="true"] .page-home,
  .page-home.nav-lock { overflow: auto; }
}
