.page-home {
  --hp-orange: #FF6B35;
  --hp-orange-dark: #E85D2A;
  --hp-deep: #0A1F44;
  --hp-sea: #123D7A;
  --hp-night: #06132E;
  --hp-white: #FFFFFF;
  --hp-cloud: #E5E7EB;
  --hp-silver: #9CA3AF;
  --hp-font-head: Impact, Anton, "DIN Condensed", "Noto Sans SC Black", sans-serif;
  --hp-font-body: Inter, "Noto Sans SC", system-ui, -apple-system, sans-serif;
  --hp-radius: 16px;
  --hp-ease: cubic-bezier(.22, 1, .36, 1);
  background: var(--hp-deep);
  color: var(--hp-white);
  font-family: var(--hp-font-body);
  overflow-x: hidden;
}

/* ===== 首屏封面 ===== */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(96px + 5vh) 0 96px;
  isolation: isolate;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(.8) contrast(1.1);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(6, 19, 46, .96) 0%, rgba(10, 31, 68, .88) 42%, rgba(10, 31, 68, .55) 75%, rgba(18, 61, 122, .45) 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(to top, var(--hp-deep) 0%, transparent 100%);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
}

.home-hero__edition {
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--hp-orange);
  border-left: 3px solid var(--hp-orange);
  padding-left: 14px;
  margin: 0 0 20px;
}

.home-hero__title {
  font-family: var(--hp-font-head);
  font-size: clamp(48px, 10vw, 112px);
  line-height: .94;
  letter-spacing: .01em;
  margin: 0 0 8px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(115deg, var(--hp-white) 55%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero__slogan {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--hp-cloud);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero__slogan::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--hp-orange);
  display: inline-block;
}

.home-hero__desc {
  max-width: 680px;
}

.home-hero__desc p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(229, 231, 235, .88);
  margin: 0;
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.home-hero__stat {
  min-width: 120px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--hp-radius);
  backdrop-filter: blur(6px);
}

.home-hero__stat strong {
  display: block;
  font-family: var(--hp-font-head);
  font-size: 32px;
  color: var(--hp-orange);
  line-height: 1.1;
}

.home-hero__stat span {
  font-size: 12px;
  color: var(--hp-silver);
  letter-spacing: .06em;
}

.home-hero__quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.home-hero .btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: var(--hp-white);
  background: rgba(255, 255, 255, .04);
}

.home-hero .btn--ghost:hover {
  border-color: var(--hp-orange);
  color: var(--hp-orange);
}

.home-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.home-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--hp-orange));
  display: block;
  animation: hp-scroll-pulse 2s var(--hp-ease) infinite;
}

.home-hero__scroll-text {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hp-silver);
  writing-mode: vertical-rl;
}

@keyframes hp-scroll-pulse {
  0% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(.6); transform-origin: top; opacity: .5; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ===== 通用区块头 ===== */
.home-section-head {
  margin-bottom: 40px;
}

.home-section-head--light {
  position: relative;
  z-index: 2;
}

.home-section-head .kicker {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hp-orange);
  display: block;
  margin-bottom: 12px;
}

.home-section-head .section-title {
  font-family: var(--hp-font-head);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.home-section-head .section-lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--hp-cloud);
  max-width: 720px;
  margin: 0;
}

/* ===== 联赛积分榜仪表盘 ===== */
.home-standings {
  background: var(--hp-deep);
  position: relative;
}

.home-standings__layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.home-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.home-filter__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: var(--hp-cloud);
  font-family: var(--hp-font-body);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--hp-ease), border-color .25s var(--hp-ease), color .25s var(--hp-ease);
}

.home-filter__btn:hover {
  border-color: var(--hp-orange);
  color: var(--hp-white);
}

.home-filter__btn.is-active {
  background: var(--hp-orange);
  border-color: var(--hp-orange);
  color: var(--hp-white);
  font-weight: 600;
}

.home-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.home-standings__table thead th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hp-silver);
  font-weight: 500;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.home-standings__table tbody td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .88);
}

.home-standings__table tbody tr:hover td {
  background: rgba(255, 107, 53, .06);
  color: var(--hp-white);
}

.home-standings__table tbody tr td:first-child {
  font-family: var(--hp-font-head);
  font-size: 18px;
  color: var(--hp-silver);
}

.home-standings__table tbody tr:nth-child(1) td:last-child,
.home-standings__table tbody tr:nth-child(2) td:last-child {
  color: var(--hp-orange);
  font-weight: 700;
}

.home-standings__note {
  font-size: 13px;
  color: var(--hp-silver);
  line-height: 1.7;
  margin: 18px 0 0;
  border-left: 2px solid var(--hp-orange);
  padding-left: 12px;
}

.home-standings__media {
  display: grid;
  gap: 20px;
}

.home-img-card {
  position: relative;
  border-radius: var(--hp-radius);
  overflow: hidden;
}

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

.home-img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(10, 31, 68, .4), transparent 60%);
}

.home-img-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--hp-white);
  background: var(--hp-orange);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.home-standings__mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.home-standings__mini > div {
  background: var(--hp-sea);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}

.home-standings__mini-label {
  display: block;
  font-size: 11px;
  color: var(--hp-silver);
  margin-bottom: 6px;
}

.home-standings__mini-value {
  font-family: var(--hp-font-head);
  font-size: 24px;
  color: var(--hp-white);
}

/* ===== 控球率数据专区 ===== */
.home-possession {
  position: relative;
  background: var(--hp-night);
  clip-path: polygon(0 2.5%, 100% 0, 100% 97.5%, 0 100%);
  padding: 96px 0 120px;
}

.home-possession__layout {
  display: grid;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-possession__visual {
  position: relative;
}

.home-possession__img {
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

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

.home-possession__score {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 19, 46, .82);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}

.home-possession__team {
  text-align: center;
}

.home-possession__team-name {
  display: block;
  font-size: 12px;
  color: var(--hp-silver);
  margin-bottom: 4px;
}

.home-possession__team-stat {
  font-family: var(--hp-font-head);
  font-size: 28px;
  color: var(--hp-white);
}

.home-possession__vs {
  font-family: var(--hp-font-head);
  font-size: 20px;
  color: var(--hp-orange);
  letter-spacing: .2em;
}

.home-possession__data {
  display: grid;
  gap: 24px;
}

.home-chart {
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 24px;
}

.home-chart__bar-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
}

.home-chart__label {
  font-size: 13px;
  color: var(--hp-cloud);
  white-space: nowrap;
}

.home-chart__bar-track {
  height: 32px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.home-chart__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--hp-orange), var(--hp-orange-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-family: var(--hp-font-head);
  font-size: 15px;
  color: var(--hp-white);
  min-width: 60px;
  transition: width 1s var(--hp-ease);
}

.home-chart__bar--alt {
  background: linear-gradient(90deg, var(--hp-sea), #1E5AA8);
}

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

.home-possession__substats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.home-possession__substats span {
  color: var(--hp-silver);
}

.home-possession__substats strong {
  color: var(--hp-white);
  font-size: 13px;
  text-align: right;
}

.home-possession__note {
  font-size: 12px;
  color: var(--hp-silver);
  margin: 0;
}

/* ===== 红黄牌案例精选 ===== */
.home-cards {
  padding-top: 80px;
}

.home-cards__grid {
  display: grid;
  gap: 20px;
}

.home-card-item {
  background: linear-gradient(145deg, rgba(18, 61, 122, .5), rgba(6, 19, 46, .8));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  transition: transform .35s var(--hp-ease), border-color .35s var(--hp-ease);
}

.home-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--hp-orange);
}

.home-card-item__img {
  overflow: hidden;
  min-height: 200px;
  background: var(--hp-sea);
}

.home-card-item__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--hp-ease);
}

.home-card-item:hover .home-card-item__img img {
  transform: scale(1.03);
}

.home-card-item__img--yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hp-sea), var(--hp-night));
}

.home-card-item__num {
  font-family: var(--hp-font-head);
  font-size: 72px;
  color: var(--hp-yellow, #F59E0B);
  text-shadow: 0 6px 24px rgba(245, 158, 11, .35);
}

.home-card-item__img--list {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hp-deep), #0D2A5C);
}

.home-card-item__list-icon {
  font-size: 48px;
  color: var(--hp-orange);
}

.home-card-item__body {
  padding: 24px;
}

.home-card-item__body h3 {
  font-family: var(--hp-font-head);
  font-size: 22px;
  margin: 12px 0 8px;
}

.home-card-item__body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--hp-cloud);
  margin: 0 0 16px;
}

.home-card-item__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 14px;
}

.home-card-item__meta div {
  text-align: center;
}

.home-card-item__meta dt {
  font-size: 11px;
  color: var(--hp-silver);
  margin-bottom: 4px;
}

.home-card-item__meta dd {
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-white);
  margin: 0;
}

/* ===== 苹果设备入口引导 ===== */
.home-apple {
  position: relative;
  background: linear-gradient(120deg, var(--hp-sea) 0%, var(--hp-deep) 60%, var(--hp-night) 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 100px 0 110px;
}

.home-apple__inner {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-apple__content .kicker {
  color: var(--hp-orange);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.home-apple__content .section-title {
  font-family: var(--hp-font-head);
  font-size: clamp(30px, 5vw, 50px);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.home-apple__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--hp-cloud);
  margin: 0 0 24px;
  max-width: 560px;
}

.home-apple__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.home-apple__features li {
  font-size: 14px;
  color: var(--hp-white);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.home-apple__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--hp-orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.home-apple__entry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: rgba(6, 19, 46, .5);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 20px 24px;
}

.home-apple__entry-label {
  font-size: 12px;
  color: var(--hp-silver);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.home-apple__entry-value {
  font-family: var(--hp-font-head);
  font-size: 26px;
  color: var(--hp-white);
  margin-right: auto;
}

.home-apple__visual {
  display: flex;
  justify-content: center;
}

.home-apple__phone {
  width: 260px;
  background: var(--hp-night);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .14);
}

.home-apple__phone-screen {
  background: var(--hp-deep);
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.home-apple__phone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hp-orange), transparent 70%);
}

.home-apple__phone-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-white);
  padding: 6px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 14px;
}

.home-apple__phone-row {
  padding: 12px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  margin-bottom: 8px;
  display: grid;
  gap: 4px;
}

.home-apple__phone-row i {
  font-style: normal;
  font-size: 10px;
  color: var(--hp-orange);
  letter-spacing: .1em;
}

.home-apple__phone-row b {
  font-size: 13px;
  color: var(--hp-cloud);
  font-weight: 500;
}

/* ===== 最新动态 ===== */
.home-news__layout {
  display: grid;
  gap: 36px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--hp-orange), rgba(255, 255, 255, .08));
}

.timeline-item {
  position: relative;
  padding-left: 34px;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--hp-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .2);
}

.timeline-item h3 {
  font-family: var(--hp-font-head);
  font-size: 20px;
  margin: 10px 0 6px;
  line-height: 1.3;
}

.timeline-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hp-silver);
  margin: 0;
}

.home-news__aside {
  display: grid;
  gap: 16px;
}

.home-news__card {
  background: linear-gradient(145deg, rgba(18, 61, 122, .45), rgba(6, 19, 46, .7));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 24px;
}

.home-news__card-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--hp-orange);
  margin-bottom: 16px;
}

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

.home-news__links a {
  color: var(--hp-cloud);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .25s var(--hp-ease);
}

.home-news__links a:hover {
  color: var(--hp-orange);
}

.home-news__links a::before {
  content: "→";
  color: var(--hp-orange);
  font-size: 16px;
}

.home-news__honor {
  background: var(--hp-night);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 24px;
}

.home-news__honor-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--hp-silver);
  margin-bottom: 12px;
}

.home-news__honor ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.home-news__honor li {
  font-size: 13px;
  color: var(--hp-cloud);
  padding-left: 14px;
  position: relative;
}

.home-news__honor li::before {
  content: "◆";
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 2px;
  color: var(--hp-orange);
}

/* ===== 底部信任条 ===== */
.home-trust {
  background: var(--hp-night);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 32px 0;
}

.home-trust__inner {
  display: grid;
  gap: 12px;
}

.home-trust p {
  margin: 0;
  font-size: 13px;
  color: var(--hp-silver);
  text-align: center;
  letter-spacing: .04em;
}

.home-trust p:nth-child(2) {
  color: var(--hp-orange);
  font-weight: 600;
}

/* ===== 响应式 ===== */
.page-home .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.page-home .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hp-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .25s var(--hp-ease), color .25s var(--hp-ease), border-color .25s var(--hp-ease), transform .25s var(--hp-ease);
  cursor: pointer;
}

.page-home .btn--primary {
  background: var(--hp-orange);
  color: var(--hp-white);
  border: 1px solid var(--hp-orange);
}

.page-home .btn--primary:hover {
  background: var(--hp-orange-dark);
  border-color: var(--hp-orange-dark);
  transform: translateY(-2px);
}

.page-home .btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--hp-white);
}

.page-home .btn--ghost:hover {
  border-color: var(--hp-orange);
  color: var(--hp-orange);
}

.page-home .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--hp-cloud);
}

.page-home .badge--hot {
  background: var(--hp-orange);
  color: var(--hp-white);
}

.page-home .badge--orange {
  background: rgba(232, 93, 42, .2);
  color: var(--hp-orange);
  border: 1px solid rgba(255, 107, 53, .3);
}

.page-home .badge--live {
  background: rgba(34, 197, 94, .12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, .25);
}

@media (min-width: 768px) {
  .page-home .container {
    --gutter: 32px;
  }

  .home-hero__title {
    font-size: clamp(60px, 9vw, 104px);
  }

  .home-hero__meta {
    gap: 20px;
  }

  .home-standings__layout {
    grid-template-columns: 1.5fr .8fr;
  }

  .home-possession__layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .home-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-card-item:first-child {
    grid-column: 1 / -1;
  }

  .home-card-item:first-child .home-card-item__body {
    padding: 28px;
  }

  .home-card-item:first-child .home-card-item__body p {
    max-width: 560px;
  }

  .home-apple__inner {
    grid-template-columns: 1.2fr .8fr;
  }

  .home-news__layout {
    grid-template-columns: 1.4fr .8fr;
    align-items: start;
  }

  .home-trust__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .home-trust p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .page-home .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home-possession {
    padding: 120px 0 150px;
  }

  .home-apple {
    padding: 120px 0 130px;
  }

  .home-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-card-item:first-child {
    grid-column: span 1;
  }

  .home-card-item__body {
    padding: 22px;
  }

  .home-card-item__meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-hero__quicknav {
    gap: 14px;
  }

  .home-hero__desc p {
    font-size: 16px;
  }

  .home-possession__score {
    bottom: 26px;
    left: 26px;
    right: 26px;
    padding: 18px 24px;
  }

  .home-possession__team-stat {
    font-size: 32px;
  }
}

@media (min-width: 1200px) {
  .page-home .container {
    --gutter: 48px;
  }

  .home-standings__layout {
    grid-template-columns: 1.6fr .7fr;
    gap: 48px;
  }

  .home-apple__phone {
    width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

.page-home {
  --hp-yellow: currentColor;
}
