.page-home {
  --home-tick: calc(100% / 95);
  --home-rule: 2px;
  background: var(--c-paper);
  color: var(--c-text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.75;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

.page-home figure {
  margin: 0;
}

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

.page-home .eyebrow--onDark {
  color: var(--c-gold);
}

.page-home .home-context {
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

/* ---------- 开场索引 ---------- */

.page-home .home-open {
  padding: clamp(28px, 5vw, 64px) 0 clamp(24px, 4vw, 44px);
  background: var(--c-paper);
}

.page-home .home-open__title {
  margin: 10px 0 18px;
  font-size: clamp(28px, 5.4vw, 50px);
  line-height: 1.24;
  letter-spacing: -0.01em;
  max-width: 22em;
}

.page-home .home-open__lead {
  margin: 0;
  max-width: 46em;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--c-muted);
}

.page-home .home-open__band {
  margin: 30px 0 0;
  aspect-ratio: 1600 / 520;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-ink);
}

.page-home .home-index {
  margin-top: clamp(24px, 4vw, 44px);
}

.page-home .home-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--c-line-strong);
}

.page-home .home-index__item {
  border-bottom: 1px solid var(--c-line);
}

.page-home .home-index__link {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas:
    "num name"
    "num desc";
  align-items: start;
  gap: 2px 14px;
  padding: 16px 6px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.page-home .home-index__link:hover,
.page-home .home-index__link:focus-visible {
  background: rgba(232, 178, 58, 0.09);
  box-shadow: inset 3px 0 0 var(--c-gold);
}

.page-home .home-index__num {
  grid-area: num;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  transition: color 0.16s var(--ease);
}

.page-home .home-index__link:hover .home-index__num,
.page-home .home-index__link:focus-visible .home-index__num {
  color: var(--c-orange-deep);
}

.page-home .home-index__name {
  grid-area: name;
  font-size: 17px;
  font-weight: 700;
}

.page-home .home-index__desc {
  grid-area: desc;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
}

/* ---------- 锚点目录 ---------- */

.page-home .home-anchors {
  position: sticky;
  top: 0;
  z-index: 6;
  background: rgba(244, 241, 232, 0.96);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.page-home .home-anchors__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-home .home-anchors__link {
  display: block;
  padding: 12px 12px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease);
}

.page-home .home-anchors__link:hover,
.page-home .home-anchors__link:focus-visible {
  color: var(--c-text);
}

.page-home .home-anchors__link[aria-current="location"] {
  color: var(--c-orange-deep);
  border-bottom-color: var(--c-gold);
}

/* ---------- 轮次索引台 ---------- */

.page-home .home-rounds {
  padding: clamp(36px, 6vw, 76px) 0;
  background: var(--c-paper);
}

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

.page-home .home-rounds__visual {
  aspect-ratio: 720 / 1080;
  max-height: 360px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  order: 2;
}

.page-home .home-rounds__body {
  min-width: 0;
  order: 1;
}

.page-home .home-ruler {
  border: 1px solid var(--c-line);
  background: var(--c-white);
  padding: 14px 16px 12px;
  box-shadow: var(--shadow-1);
}

.page-home .home-ruler__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}

.page-home .home-ruler__bar {
  position: relative;
  height: 58px;
  margin-top: 10px;
  border-bottom: 1px solid var(--c-line-strong);
  background-image: repeating-linear-gradient(
    90deg,
    var(--c-line-strong) 0,
    var(--c-line-strong) 1px,
    transparent 1px,
    var(--home-tick)
  );
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 100% 20px;
}

.page-home .home-ruler__mid {
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--c-gold);
}

.page-home .home-ruler__legend {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .home-rounds__group {
  border-bottom: 1px solid var(--c-line);
}

.page-home .home-rounds__group summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  padding: 16px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.16s var(--ease);
}

.page-home .home-rounds__group summary::-webkit-details-marker {
  display: none;
}

.page-home .home-rounds__group summary::before {
  content: "+";
  flex: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 17px;
  line-height: 1;
  color: var(--c-orange-deep);
  transition: transform 0.18s var(--ease), color 0.16s var(--ease);
}

.page-home .home-rounds__group[open] > summary::before {
  content: "−";
  color: var(--c-gold);
}

.page-home .home-rounds__group summary:hover,
.page-home .home-rounds__group summary:focus-visible {
  color: var(--c-orange-deep);
}

.page-home .home-rounds__title {
  flex: 1 1 auto;
}

.page-home .home-rounds__meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}

.page-home .home-rounds__dot {
  display: inline-block;
  width: 22px;
  height: 4px;
  background: var(--c-moss);
}

.page-home .home-rounds__dot--l1 { background: var(--c-grass); }
.page-home .home-rounds__dot--l2 { background: var(--c-gold); }
.page-home .home-rounds__dot--l3 { background: var(--c-orange); }
.page-home .home-rounds__dot--l4 { background: var(--c-brick); }

.page-home .home-rounds__group .disclosure__body p {
  margin: 0 0 10px;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .home-rounds__group .disclosure__body {
  padding-bottom: 14px;
}

.page-home .home-rounds__cta {
  margin: 26px 0 0;
}

/* ---------- 级别色标 ---------- */

.page-home .home-levels {
  padding: clamp(38px, 6vw, 80px) 0;
  background: var(--c-ink);
  color: var(--c-paper);
}

.page-home .home-levels .section-title {
  color: var(--c-white);
}

.page-home .home-levels .section-lead {
  color: rgba(244, 241, 232, 0.72);
}

.page-home .home-levels__figure {
  margin: 26px 0 clamp(24px, 4vw, 40px);
  aspect-ratio: 1200 / 360;
  overflow: hidden;
  border: 1px solid var(--c-line-dark);
}

.page-home .home-levels__switches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-levels__chip {
  display: inline-block;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 241, 232, 0.8);
  background: var(--c-night);
  border: 1px solid var(--c-line-dark);
  cursor: pointer;
  user-select: none;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease), background-color 0.16s var(--ease);
}

.page-home .home-levels__chip:hover {
  color: var(--c-white);
  border-color: var(--c-gold-soft);
}

.page-home #home-lv-all:checked ~ .home-levels__switches label[for="home-lv-all"],
.page-home #home-lv-l1:checked ~ .home-levels__switches label[for="home-lv-l1"],
.page-home #home-lv-l2:checked ~ .home-levels__switches label[for="home-lv-l2"],
.page-home #home-lv-l3:checked ~ .home-levels__switches label[for="home-lv-l3"],
.page-home #home-lv-l4:checked ~ .home-levels__switches label[for="home-lv-l4"] {
  color: var(--c-ink);
  background: var(--c-gold);
  border-color: var(--c-gold);
}

.page-home #home-lv-all:focus-visible ~ .home-levels__switches label[for="home-lv-all"],
.page-home #home-lv-l1:focus-visible ~ .home-levels__switches label[for="home-lv-l1"],
.page-home #home-lv-l2:focus-visible ~ .home-levels__switches label[for="home-lv-l2"],
.page-home #home-lv-l3:focus-visible ~ .home-levels__switches label[for="home-lv-l3"],
.page-home #home-lv-l4:focus-visible ~ .home-levels__switches label[for="home-lv-l4"] {
  outline: 2px solid var(--c-gold-soft);
  outline-offset: 2px;
}

.page-home .home-levels__panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.page-home .home-levels__panel {
  display: block;
  padding: 20px 20px 22px;
  background: var(--c-night);
  border: 1px solid var(--c-line-dark);
}

.page-home #home-lv-all:checked ~ .home-levels__panels .home-levels__panel {
  display: block;
}

.page-home #home-lv-l1:checked ~ .home-levels__panels .home-levels__panel,
.page-home #home-lv-l2:checked ~ .home-levels__panels .home-levels__panel,
.page-home #home-lv-l3:checked ~ .home-levels__panels .home-levels__panel,
.page-home #home-lv-l4:checked ~ .home-levels__panels .home-levels__panel {
  display: none;
}

.page-home #home-lv-l1:checked ~ .home-levels__panels .home-levels__panel--l1,
.page-home #home-lv-l2:checked ~ .home-levels__panels .home-levels__panel--l2,
.page-home #home-lv-l3:checked ~ .home-levels__panels .home-levels__panel--l3,
.page-home #home-lv-l4:checked ~ .home-levels__panels .home-levels__panel--l4 {
  display: block;
}

.page-home .home-levels__panel h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  color: var(--c-white);
}

.page-home .home-levels__panel p {
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(244, 241, 232, 0.74);
}

.page-home .home-levels__panel .home-levels__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--c-gold-soft);
}

.page-home .home-band__rule {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--c-moss);
}

.page-home .home-levels__panel--l1 .home-band__rule { background: var(--c-grass); }
.page-home .home-levels__panel--l2 .home-band__rule { background: var(--c-gold); }
.page-home .home-levels__panel--l3 .home-band__rule { background: var(--c-orange); }
.page-home .home-levels__panel--l4 .home-band__rule { background: var(--c-brick); }

/* ---------- 开球时段 ---------- */

.page-home .home-kickoff {
  padding: clamp(36px, 6vw, 74px) 0;
  background: var(--c-white);
}

.page-home .home-kickoff__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
}

.page-home .home-kickoff__item {
  padding: 22px 4px 24px;
  border-bottom: 1px solid var(--c-line);
  border-left: 4px solid var(--c-moss);
  padding-left: 18px;
}

.page-home .home-kickoff__item--a { border-left-color: var(--c-moss); }
.page-home .home-kickoff__item--b { border-left-color: var(--c-clay); }
.page-home .home-kickoff__item--c { border-left-color: var(--c-night); }

.page-home .home-kickoff__label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}

.page-home .home-kickoff__time {
  margin: 6px 0 10px;
  font-family: var(--font-mono);
  font-size: clamp(38px, 8vw, 62px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.page-home .home-kickoff__note {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--c-muted);
}

.page-home .home-kickoff__cta {
  margin: 26px 0 0;
  font-size: 15px;
  color: var(--c-muted);
}

.page-home .home-kickoff__cta a {
  color: var(--c-orange-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
}

.page-home .home-kickoff__cta a:hover,
.page-home .home-kickoff__cta a:focus-visible {
  color: var(--c-text);
  border-bottom-color: var(--c-text);
}

/* ---------- 跑动数据 ---------- */

.page-home .home-running {
  padding: clamp(40px, 6vw, 86px) 0 clamp(40px, 6vw, 92px);
  background: var(--c-paper);
}

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

.page-home .home-running__main {
  min-width: 0;
}

.page-home .home-range {
  margin-top: 30px;
}

.page-home .home-range__label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}

.page-home .home-range__nums {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin: 0;
}

.page-home .home-range__num {
  font-family: var(--font-mono);
  font-size: clamp(44px, 11vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.page-home .home-range__dash {
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 36px);
  color: var(--c-muted);
}

.page-home .home-range__unit {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

.page-home .home-range__track {
  position: relative;
  height: 6px;
  margin-top: 14px;
  background: var(--c-line);
}

.page-home .home-range__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-moss), var(--c-grass));
}

.page-home .home-range__fill--soft {
  background: linear-gradient(90deg, var(--c-clay), var(--c-gold));
}

.page-home .home-running__cutoff {
  margin: 34px 0 0;
  max-width: 44em;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
  border-left: 2px solid var(--c-gold);
  padding-left: 14px;
}

.page-home .home-running__figure {
  aspect-ratio: 900 / 620;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
}

.page-home .home-running__figure .media-frame__caption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--c-muted);
  border-top: 1px solid var(--c-line);
}

/* ---------- 更新节奏 ---------- */

.page-home .home-service {
  padding: clamp(38px, 6vw, 80px) 0;
  background: var(--c-night);
  color: var(--c-paper);
}

.page-home .home-service .section-title {
  color: var(--c-white);
}

.page-home .home-service .section-lead {
  color: rgba(244, 241, 232, 0.72);
}

.page-home .home-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-line-dark);
  border: 1px solid var(--c-line-dark);
}

.page-home .home-service__item {
  padding: 22px 18px 24px;
  background: var(--c-night);
  transition: background-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.page-home .home-service__item:hover {
  background: #1b3157;
  box-shadow: inset 0 0 0 1px var(--c-gold);
}

.page-home .home-service__num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 600;
  line-height: 1;
  color: var(--c-gold);
}

.page-home .home-service__unit {
  margin: 6px 0 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 232, 0.6);
}

.page-home .home-service__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(244, 241, 232, 0.8);
}

.page-home .home-service__cta {
  margin: 30px 0 0;
}

/* ---------- 月报与复盘 ---------- */

.page-home .home-reports {
  padding: clamp(38px, 6vw, 80px) 0;
  background: var(--c-white);
}

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

.page-home .home-reports__card {
  padding: 24px 20px 26px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-top: 4px solid var(--c-gold);
  transition: transform 0.14s var(--ease), box-shadow 0.14s var(--ease), border-color 0.14s var(--ease);
}

.page-home .home-reports__card--wide {
  border-top-color: var(--c-night);
}

.page-home .home-reports__card:hover {
  transform: translateY(-2px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-1);
}

.page-home .home-reports__tag {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

.page-home .home-reports__count {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(42px, 9vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.page-home .home-reports__unit {
  margin: 8px 0 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}

.page-home .home-reports__text {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--c-muted);
}

.page-home .home-reports__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-orange-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
}

.page-home .home-reports__link:hover,
.page-home .home-reports__link:focus-visible {
  color: var(--c-text);
  border-bottom-color: var(--c-text);
}

/* ---------- 城市入口 ---------- */

.page-home .home-cities {
  padding: clamp(36px, 6vw, 74px) 0;
  background: var(--c-paper);
}

.page-home .home-cities__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.page-home .home-cities__item a {
  display: block;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  transition: transform 0.14s var(--ease), border-color 0.14s var(--ease), color 0.14s var(--ease);
}

.page-home .home-cities__item a:hover,
.page-home .home-cities__item a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--c-gold);
  color: var(--c-orange-deep);
}

.page-home .home-cities__item--top a {
  border-left: 4px solid var(--c-orange);
}

.page-home .home-cities__note {
  margin: 24px 0 0;
  font-size: 14.5px;
  color: var(--c-muted);
}

.page-home .home-cities__note a {
  color: var(--c-orange-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
}

.page-home .home-cities__note a:hover,
.page-home .home-cities__note a:focus-visible {
  color: var(--c-text);
  border-bottom-color: var(--c-text);
}

/* ---------- 订阅与咨询 ---------- */

.page-home .home-contact {
  padding: clamp(38px, 6vw, 80px) 0 clamp(30px, 5vw, 56px);
  background: var(--c-ink);
  color: var(--c-paper);
}

.page-home .home-contact .section-title {
  color: var(--c-white);
}

.page-home .home-contact .section-lead {
  color: rgba(244, 241, 232, 0.75);
}

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

.page-home .home-contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.page-home .btn--onDark {
  color: var(--c-paper);
  border-color: rgba(244, 241, 232, 0.4);
  background: transparent;
}

.page-home .btn--onDark:hover,
.page-home .btn--onDark:focus-visible {
  color: var(--c-ink);
  background: var(--c-paper);
  border-color: var(--c-paper);
}

.page-home .home-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--c-line-dark);
  border: 1px solid var(--c-line-dark);
}

.page-home .home-contact__row {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: var(--c-ink);
}

.page-home .home-contact__k {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 232, 0.55);
}

.page-home .home-contact__v {
  font-size: 15px;
  line-height: 1.72;
  color: var(--c-paper);
  word-break: break-word;
}

.page-home .home-contact__rule {
  width: 96px;
  height: var(--home-rule);
  margin-top: clamp(28px, 5vw, 52px);
  background: var(--c-gold);
}

/* ---------- 响应式 ---------- */

@media (min-width: 600px) {
  .page-home .home-cities__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .page-home .home-reports__card--wide {
    grid-column: 1 / -1;
  }

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

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

@media (min-width: 900px) {
  .page-home .home-anchors__link {
    padding: 13px 16px;
    font-size: 13.5px;
  }

  .page-home .home-rounds__grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
  }

  .page-home .home-rounds__visual {
    max-height: none;
    order: 0;
  }

  .page-home .home-rounds__body {
    order: 0;
  }

  .page-home .home-kickoff__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: none;
  }

  .page-home .home-kickoff__item {
    border-bottom: none;
    border-top: 1px solid var(--c-line);
    padding: 26px 22px 28px;
  }

  .page-home .home-running__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 56px;
    align-items: start;
  }

  .page-home .home-running__figure {
    margin-top: 40px;
  }

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

  .page-home .home-reports__card--wide {
    grid-column: auto;
  }

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

  .page-home .home-contact__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .home-index__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .page-home .home-index__item {
    border-bottom: 1px solid var(--c-line);
  }
}

@media (min-width: 1100px) {
  .page-home .home-service__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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