.page-home {
  --home-line: rgba(36, 64, 107, .5);
  --home-glow: rgba(53, 240, 208, .16);
  display: block;
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow-x: clip;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home ul,
.page-home ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home figure {
  margin: 0;
}

.page-home .breadcrumb {
  padding: clamp(16px, 2.4vw, 26px) 0 0;
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--muted);
}

.page-home .breadcrumb ol {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-home .breadcrumb li[aria-current="page"] {
  color: var(--cyan);
}

/* ---------- 通用区块 ---------- */

.page-home .section {
  position: relative;
  padding: clamp(46px, 6vw, 88px) 0;
}

.page-home .annotation {
  display: block;
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--cyan);
}

.page-home .section-head {
  max-width: 64ch;
  margin-bottom: clamp(26px, 3.6vw, 46px);
}

.page-home .section-title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--cream);
}

.page-home .section-lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .block-title {
  margin: clamp(26px, 3vw, 36px) 0 14px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.page-home .inline-link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 240, 208, .45);
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}

.page-home .inline-link:hover,
.page-home .inline-link:focus-visible {
  color: var(--cyan-soft);
  border-bottom-color: var(--cyan-soft);
}

/* ---------- 首屏 ---------- */

.page-home .hero {
  position: relative;
  padding: clamp(20px, 3.4vw, 44px) 0 clamp(48px, 7vw, 96px);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: -12% -6% 0;
  background-image:
    linear-gradient(to right, rgba(36, 64, 107, .22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 64, 107, .22) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 68% 28%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 78% 68% at 68% 28%, #000 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
}

.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  padding: 7px 16px;
  border: 1px solid rgba(53, 240, 208, .38);
  border-radius: var(--r-pill);
  background: rgba(53, 240, 208, .07);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--cyan);
}

.page-home .hero__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53, 240, 208, .16);
}

.page-home .hero__title {
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  font-size: clamp(2.15rem, 7.2vw, 4.2rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.015em;
  color: var(--cream);
}

.page-home .hero__title-accent {
  color: var(--cyan);
}

.page-home .hero__lede {
  max-width: 48ch;
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.88;
  color: var(--muted);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.page-home .hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: var(--r-md);
  background: var(--home-line);
  overflow: hidden;
}

.page-home .hero__metric {
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(18, 34, 74, .94), rgba(10, 22, 51, .94));
}

.page-home .hero__metric-num {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--cyan);
}

.page-home .hero__metric-num--compact {
  font-size: clamp(.92rem, 1.5vw, 1.12rem);
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--amber);
}

.page-home .hero__metric-unit {
  margin-left: 4px;
  font-size: .42em;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .hero__metric-label {
  display: block;
  margin-top: 8px;
  font-size: .74rem;
  line-height: 1.5;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--steel);
  border-radius: var(--r-lg);
  background: var(--ink-2);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.page-home .hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .74;
  filter: saturate(.85) contrast(1.06);
}

.page-home .hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(152deg, rgba(10, 22, 51, .88) 0%, rgba(10, 22, 51, .2) 46%, rgba(53, 240, 208, .18) 100%);
  pointer-events: none;
}

.page-home .hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(53, 240, 208, .42);
  border-radius: var(--r-pill);
  background: rgba(10, 22, 51, .82);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--cyan);
}

.page-home .hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: home-pulse 1.8s var(--ease) infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.7); }
}

.page-home .hero__source {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  max-width: 78%;
  margin: 0;
  text-align: right;
  font-size: .66rem;
  line-height: 1.55;
  letter-spacing: .04em;
  color: rgba(143, 163, 200, .88);
}

/* ---------- 最近比赛日看板 ---------- */

.page-home .board {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.page-home .board-card {
  position: relative;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  background: linear-gradient(166deg, var(--ink-2) 0%, rgba(10, 22, 51, .96) 100%);
  box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.page-home .board-card:hover,
.page-home .board-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(53, 240, 208, .5);
  box-shadow: 0 28px 56px -26px rgba(53, 240, 208, .42), var(--shadow-card);
}

.page-home .board-card__tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(53, 240, 208, .1);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--cyan);
}

.page-home .board-card--amber .board-card__tag {
  background: rgba(255, 154, 46, .12);
  color: var(--amber);
}

.page-home .board-card__num {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--cyan);
}

.page-home .board-card--amber .board-card__num {
  color: var(--amber);
}

.page-home .board-card__unit {
  margin-left: 6px;
  font-size: .3em;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
}

.page-home .board-card__label {
  margin: 0 0 6px;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--cream);
}

.page-home .board-card__note {
  margin: 0 0 4px;
  font-size: .82rem;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .board-card__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 12px;
  padding: 9px 18px;
  border: 1px solid rgba(53, 240, 208, .34);
  border-radius: var(--r-pill);
  background: transparent;
  font-family: inherit;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--cyan);
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}

.page-home .board-card__trigger:hover {
  background: rgba(53, 240, 208, .09);
  border-color: rgba(53, 240, 208, .68);
}

.page-home .board-card__trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 200ms var(--ease);
}

.page-home .accordion__item[data-open] .board-card__trigger::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.page-home .board-card .accordion__body {
  padding-top: 14px;
  font-size: .86rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .board-card .accordion__body p {
  margin: 0 0 10px;
}

.page-home .board-card__link {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 154, 46, .42);
}

.page-home .board-card__link:hover {
  color: #ffb765;
}

/* ---------- 三条能力入口 ---------- */

.page-home .gates {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: stretch;
}

.page-home .gate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--steel);
  border-radius: var(--r-lg);
  background: var(--ink-2);
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.page-home .gate:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 240, 208, .45);
}

.page-home .gate--map {
  min-height: 330px;
  justify-content: flex-end;
}

.page-home .gate--map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .36;
  z-index: 0;
}

.page-home .gate--map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(178deg, rgba(10, 22, 51, .3) 0%, rgba(10, 22, 51, .95) 76%);
  z-index: 1;
}

.page-home .gate--map > * {
  position: relative;
  z-index: 2;
}

.page-home .gate--lineup {
  background: linear-gradient(160deg, rgba(47, 125, 99, .22) 0%, var(--ink-2) 62%);
}

.page-home .gate__index {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--amber);
}

.page-home .gate__title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--cream);
}

.page-home .gate__text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.82;
  color: var(--muted);
}

.page-home .gate__points {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.page-home .gate__points li {
  position: relative;
  padding-left: 16px;
  font-size: .8rem;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .gate__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .8;
}

.page-home .gate__link {
  margin-top: auto;
  padding-top: 6px;
  font-size: .84rem;
  letter-spacing: .06em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 240, 208, .4);
  align-self: flex-start;
}

.page-home .gate__link:hover {
  color: var(--cyan-soft);
}

/* ---------- 数据覆盖纵深 ---------- */

.page-home .section--cream {
  background: var(--cream);
  color: var(--brown);
}

.page-home .section--cream .annotation {
  color: #9a6420;
}

.page-home .section--cream .section-title {
  color: var(--brown);
}

.page-home .section--cream .block-title {
  color: var(--brown);
}

.page-home .coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.page-home .coverage__lede {
  max-width: 52ch;
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-size: 1rem;
  line-height: 1.85;
  color: #5a4b3a;
}

.page-home .coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-md);
  background: var(--paper-line);
  overflow: hidden;
}

.page-home .coverage__stat {
  padding: 16px 18px;
  background: #fbf7ee;
}

.page-home .coverage__num {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #b8611a;
}

.page-home .coverage__label {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  letter-spacing: .04em;
  color: #6d5c46;
}

.page-home .zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .zone-pill {
  padding: 8px 18px;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-pill);
  background: #fbf7ee;
  font-size: .84rem;
  letter-spacing: .06em;
  color: #4a3d2c;
}

.page-home .cap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.page-home .cap-table th,
.page-home .cap-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--paper-line);
}

.page-home .cap-table thead th {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: #907c5e;
}

.page-home .cap-table tbody th {
  font-weight: 500;
  color: #4a3d2c;
}

.page-home .cap-table td {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #b8611a;
}

.page-home .coverage__figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--paper-line);
  background: var(--ink-2);
  box-shadow: 0 20px 40px -26px rgba(23, 17, 13, .55);
}

.page-home .coverage__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.page-home .coverage__caption {
  padding: 14px 18px 16px;
  background: var(--ink-2);
  font-size: .78rem;
  line-height: 1.7;
  letter-spacing: .03em;
  color: var(--muted);
}

/* ---------- 安徽本地赛场 ---------- */

.page-home .local {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
}

.page-home .local__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--steel);
}

.page-home .local__media img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 4;
  object-fit: cover;
}

.page-home .local__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 22, 51, .1) 0%, rgba(10, 22, 51, .7) 100%);
  pointer-events: none;
}

.page-home .local__text {
  margin: 0 0 14px;
  font-size: .96rem;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .local__points {
  display: grid;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 26px);
  padding-top: clamp(18px, 2.4vw, 24px);
  border-top: 1px solid var(--home-line);
}

.page-home .local__points li {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 14px;
  font-size: .86rem;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .local__k {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--cyan);
  padding-top: .18em;
}

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

.page-home .pulse {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.page-home .pulse__list {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 20px;
}

.page-home .pulse__list::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(53, 240, 208, .55), rgba(36, 64, 107, .35));
}

.page-home .pulse__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(36, 64, 107, .45);
}

.page-home .pulse__item::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--cyan);
}

.page-home .pulse__time {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--amber);
}

.page-home .pulse__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}

.page-home .pulse__text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.78;
  color: var(--muted);
}

.page-home .pulse__aside {
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, var(--ink-2), rgba(10, 22, 51, .95));
}

.page-home .pulse__aside-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--cyan);
}

.page-home .pulse__facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.page-home .pulse__fact {
  display: grid;
  gap: 4px;
}

.page-home .pulse__fact dt {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--muted);
}

.page-home .pulse__fact dd {
  margin: 0;
  font-size: .88rem;
  line-height: 1.72;
  color: var(--cream);
}

/* ---------- 下一步引导 ---------- */

.page-home .cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--steel);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 240, 208, .16), transparent 56%),
    radial-gradient(circle at 6% 92%, rgba(255, 154, 46, .14), transparent 52%),
    linear-gradient(150deg, var(--ink-2), rgba(10, 22, 51, .96));
}

.page-home .cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(36, 64, 107, .3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 64, 107, .3) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000, transparent 70%);
  pointer-events: none;
}

.page-home .cta__panel > * {
  position: relative;
  z-index: 1;
}

.page-home .cta__title {
  max-width: 24ch;
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--cream);
}

.page-home .cta__text {
  max-width: 52ch;
  margin: 0 0 clamp(22px, 3vw, 30px);
  font-size: .96rem;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(18px, 2.4vw, 24px);
}

.page-home .cta__note {
  max-width: 60ch;
  margin: 0;
  font-size: .82rem;
  line-height: 1.8;
  color: var(--muted);
}

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

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

  .page-home .pulse__item {
    grid-template-columns: 6.5em 1fr;
    gap: 16px;
    align-items: baseline;
  }

  .page-home .pulse__time {
    padding-top: .12em;
  }
}

@media (min-width: 900px) {
  .page-home .hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .hero__visual {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
  }

  .page-home .board {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }

  .page-home .board > :nth-child(1) { grid-column: span 5; }
  .page-home .board > :nth-child(2) { grid-column: span 4; margin-top: 26px; }
  .page-home .board > :nth-child(3) { grid-column: span 3; margin-top: 52px; }

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

  .page-home .gate:nth-child(1) { grid-column: span 5; }
  .page-home .gate:nth-child(2) { grid-column: span 4; }
  .page-home .gate:nth-child(3) { grid-column: span 3; }

  .page-home .coverage {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .local {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: clamp(30px, 4vw, 56px);
  }

  .page-home .pulse {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

@media (min-width: 1180px) {
  .page-home .board > :nth-child(1) { grid-column: span 5; }
  .page-home .board > :nth-child(2) { grid-column: span 4; margin-top: 34px; }
  .page-home .board > :nth-child(3) { grid-column: span 3; margin-top: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero__badge-dot {
    animation: none;
  }

  .page-home .board-card,
  .page-home .gate,
  .page-home .board-card__trigger,
  .page-home .board-card__trigger::after {
    transition: none;
  }

  .page-home .board-card:hover,
  .page-home .board-card:focus-within,
  .page-home .gate:hover {
    transform: none;
  }
}
<<<END>>>
