.page-home {
  --home-shadow: linear-gradient(125deg, rgba(11, 23, 54, 0.82) 0%, rgba(11, 23, 54, 0.46) 52%, rgba(22, 41, 91, 0.68) 100%);
  --home-line: rgba(244, 246, 251, 0.1);
  background: var(--c-navy);
  color: var(--c-cloud);
  font-family: var(--font-body);
  line-height: var(--lh-body);
  overflow-x: hidden;
}

/* ===== 杂志封面区 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
  background: var(--grad-navy);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  z-index: 0;
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--home-shadow);
}

.page-home .home-hero__mist {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at 18% 82%, rgba(245, 215, 122, 0.22) 0%, transparent 52%),
              radial-gradient(ellipse at 82% 18%, rgba(0, 229, 255, 0.16) 0%, transparent 46%),
              radial-gradient(ellipse at 52% 55%, rgba(22, 41, 91, 0.38) 0%, transparent 68%);
  mix-blend-mode: screen;
  transition: filter var(--dur) var(--ease);
}

.page-home .home-hero:hover .home-hero__mist {
  filter: brightness(1.14);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-home .home-hero__titleblock {
  max-width: 760px;
}

.page-home .home-hero__crumb {
  margin-bottom: 22px;
}

.page-home .home-hero__crumb ol {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-hero__crumb li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  background: rgba(245, 215, 122, 0.12);
  border: 1px solid rgba(245, 215, 122, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
}

.page-home .home-hero__issue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  text-transform: uppercase;
}

.page-home .home-hero__issue::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--grad-gold);
}

.page-home .home-hero__title {
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 7.2vw, 66px);
  line-height: var(--lh-display);
  letter-spacing: -0.01em;
  color: var(--c-smoke);
  animation: homeTitleRise 0.8s var(--ease) both;
}

.page-home .home-hero__title span {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  border-left: 4px solid var(--c-gold-deep);
  padding-left: 18px;
  margin-top: 16px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: homeLeadIn 0.8s 0.12s var(--ease) both;
}

.page-home .home-hero__sidestack {
  display: grid;
  gap: 20px;
  max-width: 520px;
}

.page-home .home-hero__lead {
  position: relative;
  margin: 0;
  padding-top: 18px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
  color: rgba(244, 246, 251, 0.88);
  animation: homeLeadIn 0.8s 0.2s var(--ease) both;
}

.page-home .home-hero__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--grad-gold);
}

.page-home .home-hero__index {
  position: relative;
  background: rgba(11, 23, 54, 0.58);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 18px;
  padding: 26px 26px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: homeLeadIn 0.8s 0.32s var(--ease) both;
}

.page-home .home-hero__index::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  width: 72px;
  height: 2px;
  background: var(--grad-gold);
}

.page-home .home-hero__index-kicker {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-cyan);
}

.page-home .home-hero__index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-home .home-hero__index-list li + li {
  border-top: 1px solid var(--home-line);
}

.page-home .home-hero__index-list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  color: var(--c-cloud);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.page-home .home-hero__index-list a span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-gold-deep);
  min-width: 22px;
  transition: color var(--dur) var(--ease);
}

.page-home .home-hero__index-list a:hover,
.page-home .home-hero__index-list a:focus-visible {
  color: var(--c-gold);
  padding-left: 8px;
}

.page-home .home-hero__index-list a:hover span,
.page-home .home-hero__index-list a:focus-visible span {
  color: var(--c-gold);
}

.page-home .home-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.page-home .home-hero__particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 215, 122, 0.8);
  box-shadow: 0 0 12px rgba(245, 215, 122, 0.65);
  animation: homeParticleFloat 8s var(--ease) infinite;
}

.page-home .home-hero__particles span:nth-child(1) { left: 6%;  top: 70%; animation-delay: 0s;    animation-duration: 9s;  }
.page-home .home-hero__particles span:nth-child(2) { left: 14%; top: 82%; animation-delay: 1.2s; animation-duration: 11s; width: 8px; height: 8px; }
.page-home .home-hero__particles span:nth-child(3) { left: 26%; top: 64%; animation-delay: 2.1s; animation-duration: 10s; }
.page-home .home-hero__particles span:nth-child(4) { left: 35%; top: 86%; animation-delay: 0.6s; animation-duration: 12s; width: 5px; height: 5px; }
.page-home .home-hero__particles span:nth-child(5) { left: 52%; top: 75%; animation-delay: 3s;   animation-duration: 9.5s; width: 7px; height: 7px; }
.page-home .home-hero__particles span:nth-child(6) { left: 64%; top: 88%; animation-delay: 1.8s; animation-duration: 10.5s; }
.page-home .home-hero__particles span:nth-child(7) { left: 73%; top: 68%; animation-delay: 2.6s; animation-duration: 8.8s;  width: 9px; height: 9px; }
.page-home .home-hero__particles span:nth-child(8) { left: 88%; top: 80%; animation-delay: 0.9s; animation-duration: 11.5s; }

/* ===== 核心数据总览 ===== */
.page-home .home-stats {
  position: relative;
  padding: 56px 0 64px;
  background: var(--c-navy);
}

.page-home .home-stats::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.75) 8%, transparent 32%);
}

.page-home .home-stats__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.page-home .home-stats__head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: var(--lh-display);
  color: var(--c-smoke);
}

.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0;
}

.page-home .home-stats__item {
  background: var(--c-navy-2);
  border: 1px solid var(--home-line);
  border-radius: 18px;
  padding: 24px 24px 20px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .home-stats__item:hover {
  border-color: rgba(245, 215, 122, 0.5);
  transform: translateY(-4px);
}

.page-home .home-stats__item dt {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-slate);
}

.page-home .home-stats__num {
  display: block;
  margin: 0 0 8px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.15;
}

.page-home .home-stats__num small {
  font-size: 0.45em;
  color: var(--c-gold);
  -webkit-text-fill-color: var(--c-gold);
  margin-left: 2px;
}

.page-home .home-stats__note {
  margin: 0;
  color: rgba(244, 246, 251, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== 会员权益亮点 ===== */
.page-home .home-perks {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(160deg, var(--c-navy-2) 0%, var(--c-navy) 72%);
  overflow: hidden;
}

.page-home .home-perks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  clip-path: polygon(0 0, 16% 0, 34% 100%, 0 100%);
}

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

.page-home .home-perks__copy h2 {
  margin: 8px 0 14px;
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  line-height: 1.38;
  color: var(--c-smoke);
}

.page-home .home-perks__copy p {
  margin: 0 0 24px;
  color: rgba(244, 246, 251, 0.82);
  max-width: 52ch;
}

.page-home .home-perks__hl {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-gold);
  background: rgba(245, 215, 122, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.page-home .home-perks__figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.page-home .home-perks__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-perks__figure figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  background: rgba(11, 23, 54, 0.82);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 8px 8px 0;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--c-cloud);
}

/* ===== 玩法介绍列表索引 ===== */
.page-home .home-playbook {
  position: relative;
  padding: 64px 0;
  background: var(--c-navy);
}

.page-home .home-playbook::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 2px;
  background: linear-gradient(135deg, transparent 0%, var(--c-gold-deep) 50%, var(--c-gold) 100%);
}

.page-home .home-playbook__head {
  max-width: 740px;
  margin-bottom: 36px;
}

.page-home .home-playbook__head h2 {
  margin: 8px 0 12px;
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  line-height: var(--lh-display);
  color: var(--c-smoke);
}

.page-home .home-playbook__intro {
  margin: 0;
  color: rgba(244, 246, 251, 0.78);
  max-width: 68ch;
}

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

.page-home .home-playbook__figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
}

.page-home .home-playbook__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-playbook__figure figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(11, 23, 54, 0.78);
  border-right: 3px solid var(--c-cyan);
  border-radius: 8px 0 0 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--c-cloud);
}

.page-home .home-playbook__list {
  display: grid;
  gap: 14px;
}

.page-home .home-playbook__cat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(22, 41, 91, 0.66);
  border: 1px solid var(--home-line);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .home-playbook__cat:hover {
  border-color: rgba(245, 215, 122, 0.6);
  transform: translateY(-3px);
}

.page-home .home-playbook__cat-num {
  min-width: 36px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-playbook__cat h3 {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-smoke);
}

.page-home .home-playbook__cat p {
  margin: 0;
  color: rgba(244, 246, 251, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .home-playbook__list .btn {
  justify-self: start;
  margin-top: 6px;
}

/* ===== 云顶新版面板更新日志 ===== */
.page-home .home-panel {
  position: relative;
  padding: 64px 0;
  background: var(--c-navy-2);
  overflow: hidden;
}

.page-home .home-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-deep) 0%, var(--c-gold) 22%, transparent 100%);
}

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

.page-home .home-panel__figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(245, 215, 122, 0.28);
}

.page-home .home-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-panel__figure figcaption {
  background: rgba(11, 23, 54, 0.92);
  color: rgba(244, 246, 251, 0.72);
  font-size: 13px;
  padding: 12px 18px;
  text-align: center;
}

.page-home .home-panel__content h2 {
  margin: 8px 0 24px;
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  line-height: var(--lh-display);
  color: var(--c-smoke);
}

.page-home .home-panel__entry {
  position: relative;
  border-left: 2px solid var(--c-gold-deep);
  padding: 2px 0 18px 20px;
  margin-bottom: 20px;
}

.page-home .home-panel__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  background: rgba(245, 215, 122, 0.1);
  border-radius: 999px;
  padding: 3px 10px;
}

.page-home .home-panel__entry h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--c-gold);
}

.page-home .home-panel__entry p {
  margin: 0;
  color: rgba(244, 246, 251, 0.78);
}

/* ===== 帮助文档检索栏 ===== */
.page-home .home-help {
  position: relative;
  padding: 64px 0;
  background: var(--c-navy);
}

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

.page-home .home-help__visual {
  position: relative;
  background: linear-gradient(150deg, rgba(22, 41, 91, 0.86) 0%, rgba(11, 23, 54, 0.96) 100%);
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 22px;
  padding: 34px 26px;
  display: grid;
  gap: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.page-home .home-help__searchbar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(11, 23, 54, 0.82);
  border: 1px solid rgba(244, 246, 251, 0.16);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-help__searchbar:hover {
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.page-home .home-help__searchprefix {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  background: rgba(245, 215, 122, 0.12);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
}

.page-home .home-help__searchph {
  flex: 1;
  color: rgba(244, 246, 251, 0.46);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-help__searchkey {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-cyan);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
}

.page-home .home-help__path {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-slate);
  padding: 0 4px;
}

.page-home .home-help__path i {
  font-style: normal;
  color: var(--c-gold-deep);
}

.page-home .home-help__path-cur {
  color: var(--c-gold);
}

.page-home .home-help__copy h2 {
  margin: 8px 0 14px;
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  line-height: var(--lh-display);
  color: var(--c-smoke);
}

.page-home .home-help__copy p {
  margin: 0;
  color: rgba(244, 246, 251, 0.78);
  max-width: 58ch;
}

.page-home .home-help__tips {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-help__tips li {
  position: relative;
  padding-left: 28px;
  color: rgba(244, 246, 251, 0.84);
}

.page-home .home-help__tips li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--c-emerald);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ===== 品牌宣言 ===== */
.page-home .home-manifesto {
  position: relative;
  padding: 72px 0 80px;
  background: radial-gradient(ellipse at 75% 20%, rgba(0, 229, 255, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(245, 215, 122, 0.16) 0%, transparent 55%),
              linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  overflow: hidden;
}

.page-home .home-manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0) 0%, var(--c-gold) 50%, rgba(201, 162, 39, 0) 100%);
}

.page-home .home-manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-home .home-manifesto__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

.page-home .home-manifesto__inner h2 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  line-height: var(--lh-display);
  color: var(--c-smoke);
}

.page-home .home-manifesto__inner p {
  margin: 0;
  color: rgba(244, 246, 251, 0.82);
  line-height: 1.9;
}

.page-home .home-manifesto__inner a {
  color: var(--c-gold);
  text-decoration-color: rgba(245, 215, 122, 0.4);
  text-underline-offset: 4px;
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}

.page-home .home-manifesto__inner a:hover,
.page-home .home-manifesto__inner a:focus-visible {
  color: var(--c-cyan);
  text-decoration-color: var(--c-cyan);
}

.page-home .home-manifesto__seal {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  margin: 28px 0 20px;
  border: 2px solid var(--c-gold-deep);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-gold);
}

.page-home .home-manifesto__seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(245, 215, 122, 0.55);
  border-radius: 50%;
}

.page-home .home-manifesto__seal-date,
.page-home .home-manifesto__seal-batch {
  position: relative;
  z-index: 1;
}

.page-home .home-manifesto__seal-batch {
  margin-top: 6px;
  color: var(--c-cyan);
}

.page-home .home-manifesto__trust {
  margin-top: 8px;
  font-size: 14px;
  color: var(--c-slate);
}

/* ===== 关键帧与动画 ===== */
@keyframes homeTitleRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeLeadIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeParticleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.35;
  }
  25% {
    opacity: 0.9;
  }
  60% {
    transform: translateY(-42px) translateX(18px);
    opacity: 0.55;
  }
  80% {
    transform: translateY(-72px) translateX(-10px);
    opacity: 0.15;
  }
}

/* ===== 响应式 ===== */
@media (min-width: 640px) {
  .page-home .home-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-perks__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  }

  .page-home .home-help__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .page-home .home-playbook__body {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
    gap: 56px;
  }

  .page-home .home-stats {
    padding: 88px 0 96px;
  }

  .page-home .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-perks,
  .page-home .home-playbook,
  .page-home .home-panel,
  .page-home .home-help {
    padding: 96px 0;
  }

  .page-home .home-panel__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .page-home .home-panel__figure {
    order: 1;
  }

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

  .page-home .home-manifesto {
    padding: 96px 0 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__title,
  .page-home .home-hero__lead,
  .page-home .home-hero__actions,
  .page-home .home-hero__index {
    animation: none;
  }

  .page-home .home-hero__particles span {
    animation: none;
  }

  .page-home .home-hero__mist,
  .page-home .home-hero:hover .home-hero__mist {
    filter: none;
    transition: none;
  }
}
