/* ===== 首页 page-home ===== */
.page-home {
  --home-diag: polygon(0 0, 100% 0, 100% 74%, 0 100%);
  display: block;
  background: var(--af-mist);
  color: var(--af-ink-800);
}

.page-home .home-crumbs {
  padding-top: calc(var(--af-header-h) + 10px);
}

/* ---------- 01 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding-bottom: clamp(40px, 6vw, 88px);
  overflow: hidden;
}

.page-home .home-hero__slab {
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(420px, 62vw, 720px);
  background:
    radial-gradient(120% 90% at 88% 6%, rgba(244, 98, 58, 0.28), transparent 58%),
    linear-gradient(118deg, var(--af-blue-900) 0%, var(--af-blue-700) 52%, var(--af-blue-500) 100%);
  clip-path: var(--home-diag);
}

.page-home .home-hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-top: clamp(28px, 5vw, 60px);
}

.page-home .home-hero__copy {
  padding-bottom: clamp(20px, 4vw, 56px);
  color: #fff;
}

.page-home .home-hero .af-kicker {
  color: var(--af-coral-200);
}

.page-home .home-hero__title {
  margin: 14px 0 20px;
  font-weight: 300;
  font-size: clamp(44px, 7.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
}

.page-home .home-hero__title em {
  font-style: normal;
  color: var(--af-coral-600);
  font-weight: 700;
}

.page-home .home-hero__lede {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.86);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .home-hero .af-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.page-home .home-hero__media {
  margin-bottom: clamp(-96px, -6vw, -40px);
}

.page-home .home-hero__figure {
  border-radius: var(--af-radius);
  box-shadow: 0 26px 60px rgba(7, 40, 74, 0.28);
  background: #fff;
}

.page-home .home-hero__figure .af-media__frame {
  border-radius: calc(var(--af-radius) - 4px);
  overflow: hidden;
}

.page-home .home-hero__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--af-ease);
}

.page-home .home-hero__figure:hover img {
  transform: scale(1.03);
}

/* 四个刻度 */
.page-home .home-scales {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: clamp(56px, 9vw, 128px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(27, 111, 184, 0.18);
  border-radius: var(--af-radius);
  overflow: hidden;
}

.page-home .home-scale {
  position: relative;
  background: #fff;
  padding: clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: default;
  transition: background 0.35s var(--af-ease), transform 0.35s var(--af-ease);
}

.page-home .home-scale::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--af-blue-100);
  transition: background 0.35s var(--af-ease), height 0.35s var(--af-ease);
}

.page-home .home-scale:hover,
.page-home .home-scale:focus-visible {
  background: var(--af-blue-100);
  transform: translateY(-4px);
}

.page-home .home-scale:hover::before,
.page-home .home-scale:focus-visible::before {
  height: 5px;
  background: var(--af-coral-600);
}

.page-home .home-scale:focus-visible {
  outline: 2px solid var(--af-coral-600);
  outline-offset: 3px;
}

.page-home .home-scale__num {
  font-family: var(--af-mono);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--af-blue-700);
}

.page-home .home-scale__label {
  color: var(--af-stone-600);
}

.page-home .home-scale__hint {
  font-size: 13px;
  line-height: 1.7;
  color: var(--af-stone-600);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--af-ease), opacity 0.3s var(--af-ease);
}

.page-home .home-scale:hover .home-scale__hint,
.page-home .home-scale:focus-visible .home-scale__hint {
  max-height: 90px;
  opacity: 1;
}

/* ---------- 02 评价脉搏横带 ---------- */
.page-home .home-pulse {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(232, 241, 248, 0) 0%, rgba(232, 241, 248, 0.85) 100%);
}

.page-home .home-pulse__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(24px, 3.4vw, 44px);
}

.page-home .home-pulse__head .af-title {
  margin: 10px 0 0;
}

.page-home .home-pulse__note {
  color: var(--af-stone-600);
  margin: 0;
}

.page-home .home-band {
  padding-block: clamp(16px, 2vw, 26px);
}

.page-home .home-band__list {
  display: flex;
  gap: clamp(14px, 1.8vw, 22px);
  overflow-x: auto;
  padding: 0 var(--af-gutter) 14px;
  margin: 0;
  list-style: none;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--af-blue-500) transparent;
  cursor: grab;
}

.page-home .home-band__list:focus-visible {
  outline: 2px solid var(--af-coral-600);
  outline-offset: 4px;
}

.page-home .home-band__list[data-dragging="true"] {
  cursor: grabbing;
}

.page-home .home-band__list::-webkit-scrollbar {
  height: 6px;
}

.page-home .home-band__list::-webkit-scrollbar-thumb {
  background: var(--af-blue-500);
  border-radius: 999px;
}

.page-home .home-band__item {
  flex: 0 0 clamp(250px, 27vw, 340px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--af-radius);
  padding: clamp(18px, 2vw, 26px);
  box-shadow: 0 10px 26px rgba(7, 40, 74, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s var(--af-ease), box-shadow 0.35s var(--af-ease);
}

.page-home .home-band__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(7, 40, 74, 0.14);
}

.page-home .home-band__stars {
  margin: 0;
  font-family: var(--af-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--af-gold-500);
}

.page-home .home-band__quote {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--af-ink-800);
}

.page-home .home-band__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding-top: 12px;
  border-top: 1px solid var(--af-blue-100);
}

.page-home .home-band__meta > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .home-band__meta dt {
  font-size: 12px;
  color: var(--af-stone-600);
}

.page-home .home-band__meta dd {
  margin: 0;
  font-family: var(--af-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--af-blue-700);
}

.page-home .home-pulse__drag {
  text-align: right;
}

/* ---------- 03 服务网络 ---------- */
.page-home .home-net__head {
  max-width: 60ch;
}

.page-home .home-net__lede {
  margin-top: 14px;
  color: var(--af-stone-600);
}

.page-home .home-net__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(22px, 3.4vw, 54px);
  align-items: start;
  margin-top: clamp(24px, 3.4vw, 46px);
}

.page-home .home-net__map {
  margin: 0;
  border-radius: var(--af-radius);
  overflow: hidden;
  background: #fff;
}

.page-home .home-net__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s var(--af-ease);
}

.page-home .home-net__map:hover img {
  transform: scale(1.03);
}

.page-home .home-net__map .af-media__caption {
  padding: 12px 18px;
  background: #fff;
  margin: 0;
}

.page-home .home-net__zones {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}

.page-home .home-net__zone {
  background: #fff;
  border-radius: var(--af-radius);
  padding: clamp(16px, 1.8vw, 22px);
  border-left: 3px solid var(--af-blue-100);
  transition: border-color 0.3s var(--af-ease), transform 0.3s var(--af-ease);
}

.page-home .home-net__zone:hover {
  border-left-color: var(--af-coral-600);
  transform: translateX(4px);
}

.page-home .home-net__zone-name {
  margin: 6px 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--af-blue-700);
}

.page-home .home-net__zone p {
  margin: 0 0 10px;
  font-size: 14.5px;
}

.page-home .home-net__zone .af-meter {
  height: 5px;
  border-radius: 999px;
  background: var(--af-blue-100);
  overflow: hidden;
}

.page-home .home-net__zone .af-meter__bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--af-blue-500), var(--af-coral-600));
}

.page-home .home-net__zone .af-note {
  margin: 8px 0 0;
}

.page-home .home-net__hubs {
  margin-top: clamp(28px, 3.6vw, 48px);
  padding-top: clamp(20px, 2.4vw, 30px);
  border-top: 1px solid rgba(27, 111, 184, 0.22);
}

.page-home .home-net__hub-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 12px 0 12px;
}

.page-home .home-net__hub-list li {
  font-family: var(--af-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--af-blue-700);
  background: #fff;
  border: 1px solid rgba(27, 111, 184, 0.28);
  border-radius: 999px;
  padding: 8px 20px;
}

/* ---------- 04 师傅资质 ---------- */
.page-home .home-rank {
  padding: clamp(52px, 7vw, 100px) 0;
}

.page-home .home-rank__grid {
  align-items: start;
}

.page-home .home-rank__media .af-media__caption {
  padding-top: 12px;
}

.page-home .home-rank__lede {
  margin: 16px 0 26px;
  color: var(--af-stone-600);
}

.page-home .home-rank__ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .home-rank__step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  background: var(--af-mist);
  border-radius: 14px;
  transition: background 0.3s var(--af-ease), transform 0.3s var(--af-ease);
}

.page-home .home-rank__step:hover {
  background: var(--af-blue-100);
  transform: translateX(6px);
}

.page-home .home-rank__step .af-index {
  font-family: var(--af-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--af-coral-600);
  padding-top: 3px;
}

.page-home .home-rank__step h3 {
  margin: 0 0 5px;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--af-blue-700);
}

.page-home .home-rank__step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--af-stone-600);
}

.page-home .home-rank__step--top {
  background: linear-gradient(90deg, rgba(226, 163, 59, 0.16), rgba(226, 163, 59, 0.04));
  border: 1px solid rgba(226, 163, 59, 0.42);
}

.page-home .home-rank__step--top .af-index {
  color: var(--af-gold-500);
}

.page-home .home-rank__note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--af-mint-500);
  color: var(--af-ink-800);
}

/* ---------- 05 加急报修 ---------- */
.page-home .home-urgent {
  background: linear-gradient(140deg, var(--af-blue-900) 0%, var(--af-blue-700) 68%, var(--af-blue-500) 100%);
  color: #fff;
  padding: clamp(52px, 7vw, 104px) 0;
}

.page-home .home-urgent .af-kicker {
  color: var(--af-coral-200);
}

.page-home .home-urgent .af-title {
  color: #fff;
  margin: 10px 0 0;
}

.page-home .home-urgent__head {
  max-width: 62ch;
}

.page-home .home-urgent__lede {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .home-urgent__track {
  list-style: none;
  margin: clamp(30px, 4vw, 52px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  position: relative;
}

.page-home .home-urgent__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--af-coral-600), rgba(255, 217, 204, 0.25));
}

.page-home .home-urgent__node {
  position: relative;
  padding-top: 40px;
}

.page-home .home-urgent__node::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--af-coral-600);
  box-shadow: 0 0 0 5px rgba(244, 98, 58, 0.22);
}

.page-home .home-urgent__t {
  display: block;
  font-family: var(--af-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--af-coral-200);
  margin-bottom: 8px;
}

.page-home .home-urgent__node h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.page-home .home-urgent__node p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: rgba(255, 255, 255, 0.76);
}

.page-home .home-urgent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 3.6vw, 48px);
}

.page-home .home-urgent__foot {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
}

/* ---------- 06 三类客户 ---------- */
.page-home .home-audience {
  padding: clamp(52px, 7vw, 100px) 0;
}

.page-home .home-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
  margin-top: clamp(24px, 3.2vw, 42px);
}

.page-home .home-audience__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 32px);
  border-radius: var(--af-radius);
  border: 1px solid rgba(27, 111, 184, 0.16);
  transition: transform 0.35s var(--af-ease), box-shadow 0.35s var(--af-ease);
}

.page-home .home-audience__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(7, 40, 74, 0.12);
}

.page-home .home-audience__card--key {
  border-color: rgba(244, 98, 58, 0.42);
  background: linear-gradient(180deg, rgba(255, 217, 204, 0.36), #fff 62%);
}

.page-home .home-audience__card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  color: var(--af-blue-700);
  line-height: 1.35;
}

.page-home .home-audience__card .af-body {
  margin: 0;
  color: var(--af-stone-600);
  font-size: 15px;
}

.page-home .home-audience__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-home .home-audience__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--af-ink-800);
}

.page-home .home-audience__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--af-mint-500);
}

.page-home .home-audience__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--af-blue-500);
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 111, 184, 0.4);
  align-self: flex-start;
  padding-bottom: 2px;
}

.page-home .home-audience__link:hover,
.page-home .home-audience__link:focus-visible {
  color: var(--af-coral-600);
  border-bottom-color: var(--af-coral-600);
}

/* ---------- 07 服务流程 ---------- */
.page-home .home-flow__grid {
  align-items: stretch;
  margin-top: clamp(22px, 3vw, 40px);
}

.page-home .home-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  counter-reset: flow;
}

.page-home .home-flow__step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  transition: background 0.3s var(--af-ease);
}

.page-home .home-flow__step:hover {
  background: rgba(47, 183, 154, 0.1);
}

.page-home .home-flow__step .af-index {
  font-family: var(--af-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--af-blue-500);
  padding-top: 3px;
}

.page-home .home-flow__step h3 {
  margin: 0 0 6px;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--af-blue-700);
}

.page-home .home-flow__step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: var(--af-stone-600);
}

.page-home .home-flow__media {
  margin: 0;
  border-radius: var(--af-radius);
  overflow: hidden;
}

.page-home .home-flow__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--af-ease);
}

.page-home .home-flow__media:hover img {
  transform: scale(1.03);
}

.page-home .home-flow__media .af-media__caption {
  padding: 12px 18px;
  background: #fff;
  margin: 0;
}

/* ---------- 08 下一步 ---------- */
.page-home .home-next {
  padding: clamp(48px, 6.5vw, 96px) 0 clamp(64px, 8vw, 128px);
  background:
    radial-gradient(90% 70% at 8% 0%, rgba(244, 98, 58, 0.12), transparent 62%),
    var(--af-blue-900);
  color: #fff;
}

.page-home .home-next .af-kicker {
  color: var(--af-coral-200);
}

.page-home .home-next__title {
  color: #fff;
  margin: 10px 0 clamp(24px, 3.2vw, 44px);
}

.page-home .home-next__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.page-home .home-next__tile {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: var(--af-radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  transition: background 0.35s var(--af-ease), transform 0.35s var(--af-ease), border-color 0.35s var(--af-ease);
}

.page-home .home-next__tile:nth-child(4) {
  grid-column: span 2;
}

.page-home .home-next__tile:nth-child(5) {
  grid-column: span 4;
}

.page-home .home-next__tile:hover,
.page-home .home-next__tile:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--af-coral-600);
  transform: translateY(-5px);
}

.page-home .home-next__tile:focus-visible {
  outline: 2px solid var(--af-coral-600);
  outline-offset: 3px;
}

.page-home .home-next__tile .af-index {
  font-family: var(--af-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--af-coral-200);
}

.page-home .home-next__tile h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.page-home .home-next__tile p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.74);
}

.page-home .home-next__go {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--af-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--af-coral-600);
}

.page-home .home-next__tile--coral {
  background: linear-gradient(140deg, rgba(244, 98, 58, 0.9), rgba(244, 98, 58, 0.62));
  border-color: transparent;
}

.page-home .home-next__tile--coral .af-index,
.page-home .home-next__tile--coral .home-next__go,
.page-home .home-next__tile--coral h3 {
  color: #fff;
}

.page-home .home-next__tile--coral p {
  color: rgba(255, 255, 255, 0.9);
}

.page-home .home-next__tile--coral:hover,
.page-home .home-next__tile--coral:focus-visible {
  background: linear-gradient(140deg, rgba(244, 98, 58, 1), rgba(244, 98, 58, 0.78));
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
  .page-home .home-urgent__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .page-home .home-urgent__track::before {
    display: none;
  }

  .page-home .home-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-audience__card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .page-home .home-hero__shell {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .page-home .home-hero__media {
    margin-bottom: 0;
  }

  .page-home .home-hero__copy {
    padding-bottom: 24px;
  }

  .page-home .home-scales {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(36px, 8vw, 64px);
  }

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

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

  .page-home .home-rank__step,
  .page-home .home-flow__step {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .page-home .home-hero__title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .page-home .home-hero__actions .af-btn {
    flex: 1 1 100%;
    text-align: center;
  }

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

  .page-home .home-scale__hint {
    max-height: 90px;
    opacity: 1;
  }

  .page-home .home-band__item {
    flex: 0 0 84vw;
  }

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

  .page-home .home-audience__card:last-child {
    grid-column: span 1;
  }

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

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

  .page-home .home-next__tile,
  .page-home .home-next__tile:nth-child(4),
  .page-home .home-next__tile:nth-child(5) {
    grid-column: span 1;
  }

  .page-home .home-pulse__drag {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__figure img,
  .page-home .home-net__map img,
  .page-home .home-flow__media img,
  .page-home .home-scale,
  .page-home .home-band__item,
  .page-home .home-next__tile,
  .page-home .home-net__zone,
  .page-home .home-rank__step {
    transition: none;
    transform: none;
  }
}
