.page-home {
  --home-space: clamp(56px, 8vw, 96px);
  --home-radius: 12px;
  background: var(--color-bg-light);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-secondary) 100%);
  background-size: 34px 34px, 34px 34px, auto;
  padding: calc(var(--header-height) + 32px) 0 64px;
  color: var(--color-white);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, transparent 40%, var(--color-accent) 40%, var(--color-accent) 60%, transparent 60%);
  opacity: 0.18;
  transform: rotate(10deg);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "M // 01 内容地图";
  position: absolute;
  left: -18px;
  bottom: 56px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.24);
  transform: rotate(-90deg);
  white-space: nowrap;
  pointer-events: none;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
  align-items: center;
}

@media (min-width: 980px) {
  .page-home .home-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 620px;
  }
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-home .home-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--color-accent);
  transform: skewX(-30deg);
}

.page-home .home-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(34px, 6.8vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.page-home .home-hero__title-accent {
  position: relative;
  color: var(--color-accent);
  white-space: nowrap;
}

.page-home .home-hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 100%);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.page-home .home-hero__lead {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.page-home .version-switch {
  max-width: 560px;
  margin-bottom: 28px;
}

.page-home .version-switch__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .version-switch__tabs {
  display: flex;
  gap: 0;
  width: fit-content;
  margin-bottom: 16px;
  padding: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
}

.page-home .version-switch__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.page-home #v-classic:checked ~ .version-switch__tabs label[for="v-classic"],
.page-home #v-modern:checked ~ .version-switch__tabs label[for="v-modern"] {
  background: var(--color-accent);
  color: var(--color-white);
}

.page-home .version-switch__panels {
  position: relative;
}

.page-home .version-switch__panel {
  display: none;
  position: relative;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
}

.page-home #v-classic:checked ~ .version-switch__panels .version-switch__panel--classic,
.page-home #v-modern:checked ~ .version-switch__panels .version-switch__panel--modern {
  display: block;
}

.page-home .version-switch__name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
}

.page-home .version-switch__panel p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.page-home .version-switch__panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .version-switch__panel li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.page-home .version-switch__panel li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-hero__actions .btn {
  min-width: 142px;
  justify-content: center;
}

.page-home .home-hero__visual {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__visual::before {
  content: "";
  position: absolute;
  inset: -14px -10px;
  border: 1px solid rgba(229,184,11,0.45);
  border-radius: 14px;
  transform: rotate(-1.2deg);
  z-index: -1;
}

.page-home .home-hero__visual::after {
  content: "VERSION MAP";
  position: absolute;
  top: -32px;
  right: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
  transform: rotate(1.5deg);
}

.page-home .home-section-head {
  margin-bottom: 36px;
}

.page-home .home-section-head__index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-home .home-section-head__index::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transform: skewX(-30deg);
}

.page-home .home-section-head__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--color-primary);
}

.page-home .home-section-head__desc {
  max-width: 660px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page-home .home-section-head--left {
  text-align: left;
}

.page-home .home-version {
  position: relative;
  padding: var(--home-space) 0;
  background: var(--color-bg-light);
}

.page-home .home-version::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 30%, transparent 100%);
}

.page-home .home-version__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .page-home .home-version__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.page-home .home-version-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px 36px;
  background: var(--color-white);
  border: 1px solid #e7e7f0;
  border-radius: var(--home-radius);
  box-shadow: 0 10px 30px rgba(26,26,74,0.05);
}

.page-home .home-version-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, transparent 50%, rgba(229,184,11,0.22) 50%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.page-home .home-version-card--modern {
  background: linear-gradient(155deg, var(--color-white) 0%, #f3f3fa 100%);
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(26,26,74,0.12);
}

.page-home .home-version-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .home-version-card__tag {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.page-home .home-version-card--modern .home-version-card__tag {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.page-home .home-version-card__badge {
  display: inline-block;
  padding: 2px 10px;
  background: linear-gradient(110deg, var(--color-accent), #ff8b2e);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  transform: rotate(-2deg);
}

.page-home .home-version-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-primary);
}

.page-home .home-version-card__desc {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page-home .home-version-card__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.page-home .home-version-card__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}

.page-home .home-version-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
}

.page-home .home-version-card .btn {
  align-self: flex-start;
  min-width: 132px;
  margin-top: auto;
}

.page-home .home-updates {
  position: relative;
  padding: var(--home-space) 0;
  background: linear-gradient(150deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  overflow: hidden;
}

.page-home .home-updates::after {
  content: "02//TRACK";
  position: absolute;
  right: -8px;
  top: 32px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.16);
  transform: rotate(90deg);
  white-space: nowrap;
}

.page-home .home-updates__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 960px) {
  .page-home .home-updates__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

.page-home .home-updates__visual {
  position: relative;
}

.page-home .home-updates__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.page-home .home-updates__content .home-section-head__title {
  color: var(--color-white);
}

.page-home .home-updates__content .home-section-head__desc {
  color: rgba(255,255,255,0.75);
}

.page-home .home-updates__timeline {
  position: relative;
  margin: 24px 0 30px;
  padding: 0 0 0 28px;
  list-style: none;
}

.page-home .home-updates__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-gold) 60%, rgba(255,255,255,0.12) 100%);
}

.page-home .home-updates__item {
  position: relative;
  padding-bottom: 22px;
}

.page-home .home-updates__item:last-child {
  padding-bottom: 0;
}

.page-home .home-updates__item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(255,111,0,0.18);
}

.page-home .home-updates__time {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: rgba(229,184,11,0.12);
  border: 1px solid rgba(229,184,11,0.3);
  border-radius: 999px;
}

.page-home .home-updates__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.page-home .home-member {
  position: relative;
  padding: var(--home-space) 0;
  background: var(--color-bg-light);
}

.page-home .home-member__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 960px) {
  .page-home .home-member__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.page-home .home-member__content {
  order: 2;
}

.page-home .home-member__visual {
  position: relative;
  order: 1;
}

@media (min-width: 960px) {
  .page-home .home-member__content {
    order: 1;
  }

  .page-home .home-member__visual {
    order: 2;
  }
}

.page-home .home-member__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--home-radius);
  box-shadow: 0 18px 44px rgba(26,26,74,0.16);
}

.page-home .home-member__featurelist {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.page-home .home-member__featurelist li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--color-white);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(26,26,74,0.05);
}

.page-home .home-member__feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .home-member__feature-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.page-home .home-desktop {
  position: relative;
  padding: var(--home-space) 0;
  background: var(--color-white);
  overflow: hidden;
}

.page-home .home-desktop::before {
  content: "PC ENTRANCE";
  position: absolute;
  left: -10px;
  top: 48px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(26,26,74,0.08);
  transform: rotate(-90deg);
}

.page-home .home-desktop__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 960px) {
  .page-home .home-desktop__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
  }
}

.page-home .home-desktop__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--home-radius);
  box-shadow: 0 18px 44px rgba(26,26,74,0.12);
}

.page-home .home-desktop__steps {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.page-home .home-desktop__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 14px 16px;
  background: var(--color-bg-light);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}

.page-home .home-desktop__steps li:last-child {
  margin-bottom: 0;
}

.page-home .home-desktop__step-num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
}

.page-home .home-trust {
  position: relative;
  padding: 48px 0;
  background: var(--color-primary-dark);
  overflow: hidden;
}

.page-home .home-trust::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 40%, transparent 100%);
}

.page-home .home-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
  margin-bottom: 28px;
}

@media (min-width: 800px) {
  .page-home .home-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .home-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.page-home .home-trust__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--color-gold);
}

.page-home .home-trust__label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}

.page-home .home-trust__note {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  color: rgba(255,255,255,0.6);
}
