@keyframes wxHomePulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(42,127,108,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(42,127,108,0.12); }
}

.page-home {
  --sand-wash: #F1E8D8;
  --sunset-wash: #FFF1EA;
  background: var(--snow);
  color: var(--ink);
  overflow-x: hidden;
}

.page-home .display-hero {
  font-family: var(--font-display);
  color: var(--snow);
  letter-spacing: 0.01em;
}

.page-home .section-title {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

/* ============ 首屏 Hero ============ */

.page-home .home-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--night);
  overflow: hidden;
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.78) contrast(1.12);
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 18, 30, 0.94) 0%, rgba(14, 22, 36, 0.78) 38%, rgba(26, 43, 76, 0.46) 68%, rgba(212, 162, 78, 0.26) 100%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--sunset) 0%, var(--desert-gold) 58%, var(--snow) 58%, var(--snow) 100%);
  z-index: 3;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 68px;
}

.page-home .home-hero__title {
  margin: 12px 0 20px;
  font-size: clamp(38px, 8vw, 64px);
  line-height: 1.12;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.page-home .home-hero__title::after {
  content: "";
  display: block;
  width: 76px;
  height: 8px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--sunset), var(--desert-gold) 70%, transparent);
}

.page-home .home-hero__lead {
  color: rgba(248, 249, 247, 0.76);
  font-size: 17px;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 28px;
}

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

.page-home .home-hero .btn-solid {
  box-shadow: 6px 6px 0 rgba(212, 162, 78, 0.35);
}

.page-home .home-hero .btn-outline,
.page-home .home-landscape .btn-outline {
  color: var(--snow);
  border-color: var(--snow);
  background: transparent;
}

.page-home .home-hero .btn-outline:hover,
.page-home .home-landscape .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--desert-gold);
  color: var(--desert-gold);
}

.page-home .home-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.page-home .home-index a {
  color: var(--snow);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(107, 181, 201, 0.5);
  background: rgba(248, 249, 247, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-home .home-index a:hover {
  background: rgba(212, 162, 78, 0.18);
  border-color: var(--desert-gold);
  color: var(--desert-gold);
}

.page-home .home-hero .eyebrow {
  color: var(--sky);
}

/* 比分盘 */

.page-home .home-scoreboard {
  position: relative;
  background: rgba(9, 16, 28, 0.88);
  border: 2px solid var(--desert-gold);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.32);
  padding: 20px;
  transform: rotate(0.4deg);
  backdrop-filter: blur(6px);
}

.page-home .home-scoreboard::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  width: 54px;
  height: 20px;
  background: var(--sunset);
  border: 2px solid var(--ink);
  transform: rotate(-2deg) skew(-6deg);
  z-index: 2;
}

.page-home .home-scoreboard::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 40px;
  width: 20px;
  height: 56px;
  background: var(--desert-gold);
  border: 2px solid var(--ink);
  transform: rotate(-3deg);
  z-index: 2;
}

.page-home .home-scoreboard__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(212, 162, 78, 0.3);
  padding-bottom: 14px;
  margin-bottom: 6px;
}

.page-home .home-scoreboard__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--oasis);
}

.page-home .home-scoreboard__pulse,
.page-home .bento-score__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--oasis);
  animation: wxHomePulse 2s infinite;
}

.page-home .home-scoreboard__demo {
  color: var(--sunset);
  border-color: var(--sunset);
}

.page-home .home-scoreboard__body {
  display: grid;
  gap: 4px;
  padding: 10px 0 4px;
}

.page-home .score-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease;
}

.page-home .score-row:hover {
  transform: scale(1.02);
  background: rgba(212, 162, 78, 0.1);
}

.page-home .score-row__team {
  font-weight: 700;
  font-size: 16px;
  color: var(--snow);
}

.page-home .score-row__team--right {
  text-align: right;
}

.page-home .score-row__score {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--desert-gold);
  letter-spacing: 0.04em;
}

.page-home .score-row__status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(248, 249, 247, 0.5);
  text-align: right;
}

.page-home .score-row--live {
  border-left-color: var(--oasis);
  background: rgba(42, 127, 108, 0.14);
}

.page-home .score-row--live .score-row__status {
  color: var(--oasis);
}

.page-home .home-scoreboard__foot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(212, 162, 78, 0.14);
  border: 1px solid rgba(212, 162, 78, 0.32);
}

.page-home .home-scoreboard__foot .stat-number {
  color: var(--desert-gold);
  font-size: 24px;
}

.page-home .home-scoreboard__foot span:last-child {
  font-size: 13px;
  font-family: var(--font-body);
  color: rgba(248, 249, 247, 0.62);
}

/* 首屏浮动数据块 */

.page-home .hero-float {
  display: none;
}

/* ============ 平台核心能力 ============ */

.page-home .home-capability {
  background: var(--snow);
}

.page-home .home-capability__head {
  max-width: 680px;
  margin-bottom: 40px;
}

.page-home .home-capability__head .section-title {
  margin: 8px 0 12px;
}

.page-home .bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .bento-grid .data-card {
  border-radius: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-home .bento-score,
.page-home .bento-data,
.page-home .bento-report,
.page-home .bento-vip,
.page-home .bento-coverage {
  margin: 0;
}

.page-home .bento-score:hover,
.page-home .bento-data:hover,
.page-home .bento-report:hover,
.page-home .bento-vip:hover,
.page-home .bento-coverage:hover {
  transform: translateY(-4px);
}

.page-home .bento-score {
  background: var(--night);
  color: var(--snow);
  border-color: var(--desert-gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .bento-score:hover {
  border-color: var(--desert-gold);
  box-shadow: 12px 12px 0 rgba(212, 162, 78, 0.28);
}

.page-home .bento-score__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.page-home .bento-score__top h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  margin: 10px 0 0;
  color: var(--snow);
  text-transform: uppercase;
}

.page-home .bento-score__demo {
  color: var(--sunset);
  border-color: var(--sunset);
  margin-left: 6px;
}

.page-home .bento-score__dot {
  flex-shrink: 0;
  margin-top: 4px;
}

.page-home .bento-score__matches {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 8px;
  flex: 1 0 auto;
}

.page-home .bento-score__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid transparent;
}

.page-home .bento-score__row--live {
  background: rgba(42, 127, 108, 0.14);
  border-left-color: var(--oasis);
}

.page-home .bento-score__mid {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--desert-gold);
}

.page-home .bento-score__state {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(248, 249, 247, 0.5);
}

.page-home .bento-score .bento-score__row--live .bento-score__state {
  color: var(--oasis);
}

.page-home .bento-score > p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 249, 247, 0.7);
  margin: 0;
}

.page-home .bento-score__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.page-home .bento-score__stat {
  background: rgba(10, 18, 30, 0.9);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.page-home .bento-score__stat .stat-number {
  color: var(--desert-gold);
  font-size: 22px;
}

.page-home .bento-score__stat span:last-child {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(248, 249, 247, 0.62);
}

.page-home .bento-score .label-tag {
  color: var(--desert-gold);
  border-color: rgba(212, 162, 78, 0.5);
  background: rgba(14, 22, 36, 0.5);
}

/* 球队数据卡 */

.page-home .bento-data {
  padding: 0;
  display: grid;
  grid-template-rows: auto auto;
}

.page-home .bento-data__text {
  padding: 24px 20px 0;
}

.page-home .bento-data__text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  margin: 10px 0 10px;
}

.page-home .bento-data__text p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 22, 36, 0.76);
  margin: 0;
}

.page-home .bento-data__list {
  list-style: none;
  margin: 14px 0 18px;
  padding: 12px 0 0;
  border-top: 1px dashed var(--rock);
  display: grid;
  gap: 8px;
}

.page-home .bento-data__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(14, 22, 36, 0.76);
}

.page-home .bento-data__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--oasis);
  transform: skew(-16deg);
}

.page-home .bento-data__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--oasis);
  text-decoration: none;
  border-bottom: 2px solid var(--oasis);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .bento-data__link:hover {
  color: var(--sunset);
  border-bottom-color: var(--sunset);
}

.page-home .bento-data__img {
  margin: 16px 20px 20px;
}

.page-home .bento-data__img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* 战报卡 */

.page-home .bento-report {
  display: flex;
  flex-direction: column;
}

.page-home .bento-report h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin: 12px 0 10px;
}

.page-home .bento-report > p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 22, 36, 0.76);
  margin: 0;
}

.page-home .bento-report__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.page-home .bento-report__cadence {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--oasis);
  border: 1px solid rgba(42, 127, 108, 0.4);
  padding: 3px 6px;
  background: rgba(42, 127, 108, 0.08);
}

.page-home .bento-report__list {
  list-style: none;
  margin: 14px 0 18px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(194, 163, 122, 0.45);
  display: grid;
  gap: 10px;
}

.page-home .bento-report__list li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(14, 22, 36, 0.8);
}

.page-home .bento-report__list .label-tag {
  flex-shrink: 0;
}

.page-home .bento-report .bento-data__link {
  margin-top: auto;
}

/* VIP 卡 */

.page-home .bento-vip {
  background: linear-gradient(180deg, var(--sunset-wash) 0%, #ffffff 62%);
  border-left: 6px solid var(--sunset);
  display: flex;
  flex-direction: column;
}

.page-home .bento-vip:hover {
  border-color: var(--sunset);
  box-shadow: 10px 10px 0 rgba(242, 126, 77, 0.2);
}

.page-home .bento-vip h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--sunset);
  margin: 10px 0 10px;
}

.page-home .bento-vip p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 22, 36, 0.76);
  margin: 0;
}

.page-home .bento-vip__btn {
  margin-top: auto;
  color: var(--sunset);
  border-color: var(--sunset);
}

.page-home .bento-vip__btn:hover {
  background: var(--sunset);
  color: #ffffff;
  border-color: var(--sunset);
}

/* 覆盖卡 */

.page-home .bento-coverage {
  background: var(--sand-wash);
  display: flex;
  flex-direction: column;
}

.page-home .bento-coverage__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .bento-coverage__meta .stat-number {
  color: var(--sunset);
  font-size: 32px;
  justify-self: end;
}

.page-home .bento-coverage__meta > span:last-child {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(14, 22, 36, 0.65);
}

.page-home .bento-coverage__track {
  height: 8px;
  background: rgba(14, 22, 36, 0.1);
  border: 1px solid rgba(194, 163, 122, 0.4);
  overflow: hidden;
}

.page-home .bento-coverage__fill {
  display: block;
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--desert-gold), var(--sunset));
}

.page-home .bento-coverage p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 22, 36, 0.76);
  margin: 12px 0 0;
}

/* ============ 本周战报精选 ============ */

.page-home .home-report {
  background: var(--sand-wash);
}

.page-home .home-report__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.page-home .home-report__head .lead {
  margin-bottom: 0;
}

.page-home .home-report__divider {
  margin: 28px 0 20px;
}

.page-home .report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .report-card {
  border-top: 6px solid var(--desert-gold);
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.page-home .report-card:nth-child(2) {
  border-top-color: var(--oasis);
}

.page-home .report-card:nth-child(3) {
  border-top-color: var(--sunset);
}

.page-home .report-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .report-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--rock);
}

.page-home .report-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.page-home .report-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 22, 36, 0.76);
  margin: 0 0 16px;
}

.page-home .report-card__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--night);
  border-bottom: 2px solid var(--desert-gold);
  padding-bottom: 2px;
  margin-top: auto;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .report-card__link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.18s ease;
}

.page-home .report-card__link:hover {
  color: var(--oasis);
  border-bottom-color: var(--oasis);
}

.page-home .report-card__link:hover::after {
  transform: translateX(3px);
}

/* ============ 地域视觉与品牌 ============ */

.page-home .home-landscape {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}

.page-home .home-landscape__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.page-home .home-landscape__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(14, 22, 36, 0.9) 0%, rgba(14, 22, 36, 0.6) 46%, rgba(26, 43, 76, 0.3) 100%);
}

.page-home .home-landscape__content {
  position: relative;
  z-index: 1;
  color: var(--snow);
  max-width: 680px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-home .home-landscape__content .eyebrow {
  color: var(--sky);
}

.page-home .home-landscape__content .section-title {
  color: var(--snow);
  margin: 8px 0 12px;
}

.page-home .home-landscape__content p {
  color: rgba(248, 249, 247, 0.78);
  line-height: 1.8;
  margin: 12px 0 24px;
  font-size: 16px;
}

/* ============ 如何开始 ============ */

.page-home .home-start {
  position: relative;
  overflow: hidden;
  background: var(--snow);
}

.page-home .home-start::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(212, 162, 78, 0.14) 14px 28px);
}

.page-home .home-start::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  background: linear-gradient(90deg, var(--sunset), var(--desert-gold), transparent);
}

.page-home .home-start__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.page-home .home-start__steps .section-title {
  margin: 8px 0 32px;
}

.page-home .start-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}

.page-home .start-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.page-home .start-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--snow);
  border: 2px solid var(--desert-gold);
  box-shadow: 4px 4px 0 rgba(212, 162, 78, 0.3);
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--desert-gold);
}

.page-home .start-step__body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 6px;
}

.page-home .start-step__body p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 22, 36, 0.74);
  margin: 0;
}

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

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

.page-home .home-start__frame {
  box-shadow: 12px 12px 0 rgba(26, 43, 76, 0.16);
  border-radius: 0;
}

.page-home .home-start__frame img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-start__caption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(14, 22, 36, 0.55);
  text-align: right;
  border-right: 4px solid var(--desert-gold);
  padding-right: 10px;
}

/* ============ 数据可信度 ============ */

.page-home .home-trust {
  position: relative;
  background: var(--night);
  color: var(--snow);
  overflow: hidden;
}

.page-home .home-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(107, 181, 201, 0.16) 0, transparent 300px),
    linear-gradient(120deg, transparent 62%, rgba(212, 162, 78, 0.08) 62%);
}

.page-home .home-trust > .container {
  position: relative;
  z-index: 1;
}

.page-home .home-trust__head {
  max-width: 680px;
  margin-bottom: 36px;
}

.page-home .home-trust__head .eyebrow,
.page-home .home-landscape .eyebrow,
.page-home .home-hero .eyebrow {
  color: var(--sky);
}

.page-home .home-trust__head .section-title {
  color: var(--snow);
  margin: 8px 0 12px;
}

.page-home .home-trust__head .lead {
  color: rgba(248, 249, 247, 0.7);
  margin-bottom: 0;
}

.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(212, 162, 78, 0.26);
  border: 2px solid rgba(212, 162, 78, 0.34);
}

.page-home .trust-item {
  background: rgba(14, 22, 36, 0.88);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: background 0.2s ease;
}

.page-home .trust-item:hover {
  background: rgba(26, 43, 76, 0.94);
}

.page-home .trust-item .stat-number {
  color: var(--desert-gold);
  font-size: 30px;
}

.page-home .trust-item__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(248, 249, 247, 0.6);
}

.page-home .home-trust__note {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(248, 249, 247, 0.55);
  border-left: 4px solid var(--desert-gold);
  padding-left: 16px;
}

/* ============ 响应式断点 ============ */

@media (min-width: 700px) {
  .page-home .home-scoreboard {
    padding: 26px;
  }

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

  .page-home .bento-score {
    grid-column: span 2;
  }

  .page-home .bento-data {
    grid-column: span 2;
  }

  .page-home .bento-report {
    grid-column: span 1;
  }

  .page-home .bento-vip {
    grid-column: span 1;
  }

  .page-home .bento-coverage {
    grid-column: span 2;
  }

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

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

@media (min-width: 900px) {
  .page-home .home-start__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

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

@media (min-width: 960px) {
  .page-home .home-hero {
    min-height: 640px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 48px;
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .page-home .hero-float {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    position: absolute;
    z-index: 3;
    background: var(--snow);
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 rgba(212, 162, 78, 0.45);
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 13px;
  }

  .page-home .hero-float .stat-number {
    color: var(--sunset);
    font-size: 22px;
  }

  .page-home .hero-float--leagues {
    top: 134px;
    right: 7%;
    transform: rotate(2deg);
  }

  .page-home .hero-float--teams {
    bottom: 120px;
    left: 5%;
    transform: rotate(-3deg);
  }

  .page-home .home-landscape {
    min-height: 420px;
  }
}

@media (min-width: 1024px) {
  .page-home .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .page-home .bento-score {
    grid-column: span 2;
    grid-row: span 2;
  }

  .page-home .bento-data {
    grid-column: span 4;
    grid-row: 1;
  }

  .page-home .bento-report {
    grid-column: span 2;
    grid-row: 2;
  }

  .page-home .bento-vip {
    grid-column: span 1;
    grid-row: 2;
  }

  .page-home .bento-coverage {
    grid-column: span 1;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-scoreboard__pulse,
  .page-home .bento-score__dot {
    animation: none;
  }

  .page-home .bento-score:hover,
  .page-home .bento-data:hover,
  .page-home .bento-report:hover,
  .page-home .bento-vip:hover,
  .page-home .bento-coverage:hover,
  .page-home .score-row:hover,
  .page-home .report-card__link:hover::after {
    transform: none;
  }
}
