.page-home {
  --hp-lane: repeating-linear-gradient(135deg, rgba(198, 255, 0, 0.08) 0 6px, transparent 6px 12px);
  overflow-x: hidden;
}

/* ========== Hero ========== */
.page-home .hp-hero {
  position: relative;
  background: var(--c-deep);
  color: var(--c-txt-light);
  overflow: hidden;
}
.page-home .hp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 42%;
  background: var(--c-dark);
  transform: skewX(-14deg) translateX(10%);
  transform-origin: left bottom;
  z-index: 0;
}
.page-home .hp-hero::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 46%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-green) 0 62%, var(--c-orange) 62% 100%);
  transform: skewX(-14deg);
  z-index: 2;
}
.page-home .hp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}
.page-home .hp-hero__eyebrow {
  color: var(--c-green);
  border-color: var(--c-green);
  margin-bottom: var(--space-1);
}
.page-home .hp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-txt-light);
  text-transform: uppercase;
}
.page-home .hp-hero__lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-txt-gray);
  max-width: 32rem;
  margin: var(--space-1) 0 0;
}
.page-home .hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}
.page-home .hp-hero__btn {
  box-shadow: var(--shadow-green);
}
.page-home .hp-hero__btn.btn--ghost {
  color: var(--c-txt-light);
  border-color: var(--c-divider);
  box-shadow: none;
}
.page-home .hp-hero__stats {
  list-style: none;
  margin: var(--space-2) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  width: 100%;
  max-width: 30rem;
}
.page-home .hp-hero__stat {
  border-left: 2px solid var(--c-divider);
  padding: var(--space-1) var(--space-2);
}
.page-home .hp-hero__stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--c-green);
}
.page-home .hp-hero__stat span {
  display: block;
  font-size: 0.75rem;
  color: var(--c-txt-gray);
  margin-top: 0.25rem;
}
.page-home .hp-hero__visual {
  position: relative;
  z-index: 1;
}
.page-home .hp-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
}
.page-home .hp-hero__chips {
  display: flex;
  gap: var(--space-1);
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  flex-wrap: wrap;
}
.page-home .hp-hero__chips span {
  background: var(--c-glass);
  border: 1px solid rgba(198, 255, 0, 0.5);
  color: var(--c-green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ========== 当季导航直连 ========== */
.page-home .hp-direct {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60"><path d="M0 0L60 60" stroke="%23C6FF00" stroke-opacity="0.06" stroke-width="1"/></svg>');
}
.page-home .hp-direct__inner {
  display: grid;
  gap: var(--space-4);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-direct__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
}
.page-home .hp-direct__eyebrow {
  color: var(--c-green);
  border-color: var(--c-green);
}
.page-home .hp-direct__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.05;
  margin: 0;
  color: var(--c-txt-light);
}
.page-home .hp-direct__lead {
  color: var(--c-txt-gray);
  max-width: 36rem;
  margin: 0;
}
.page-home .hp-direct__quick {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-1);
}
.page-home .hp-direct__link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--c-green);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--c-divider);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-home .hp-direct__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.page-home .hp-direct__link:hover,
.page-home .hp-direct__link:focus-visible {
  color: var(--c-orange);
  outline: none;
}
.page-home .hp-direct__link:hover::after,
.page-home .hp-direct__link:focus-visible::after {
  transform: scaleX(1);
}

/* 积分榜面板 */
.page-home .hp-standings {
  background: var(--c-glass);
  border: 1px solid var(--c-divider);
  padding: var(--space-3);
  overflow: hidden;
}
.page-home .hp-standings__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--c-divider);
}
.page-home .hp-standings__bar span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-txt-gray);
  padding: 0.3rem 0.6rem;
  border: 1px solid transparent;
}
.page-home .hp-standings__bar .is-active {
  color: var(--c-deep);
  background: var(--c-green);
  border-color: var(--c-green);
}
.page-home .hp-standings__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: var(--space-2) 0;
  color: var(--c-txt-light);
}
.page-home .hp-standings__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-home .hp-standings__table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.page-home .hp-standings__table th,
.page-home .hp-standings__table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--c-divider);
  white-space: nowrap;
}
.page-home .hp-standings__table thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-txt-gray);
  border-bottom: 2px solid var(--c-green);
}
.page-home .hp-standings__table tbody th {
  font-family: var(--font-mono);
  color: var(--c-green);
}
.page-home .hp-standings__table tbody td {
  color: var(--c-txt-light);
}
.page-home .hp-standings__table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-home .hp-standings__table tbody tr:hover,
.page-home .hp-standings__table tbody tr:focus-within {
  background: var(--c-green);
  transform: scale(1.01);
}
.page-home .hp-standings__table tbody tr:hover td,
.page-home .hp-standings__table tbody tr:hover th {
  color: var(--c-deep);
}
.page-home .hp-standings__table tbody tr:hover .hp-standings__form i {
  border-color: var(--c-deep);
}
.page-home .hp-standings__form {
  display: flex;
  gap: 0.3rem;
}
.page-home .hp-standings__form i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0;
  display: inline-block;
  border: 1px solid var(--c-txt-gray);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.page-home .hp-standings__form .is-w {
  background: var(--c-green);
  border-color: var(--c-green);
  opacity: 0.9;
}
.page-home .hp-standings__form .is-d {
  background: transparent;
  border-color: var(--c-txt-gray);
  opacity: 0.65;
}
.page-home .hp-standings__form .is-l {
  background: var(--c-orange);
  border-color: var(--c-orange);
  opacity: 0.9;
}
.page-home .hp-standings__note {
  font-size: 0.8rem;
  color: var(--c-txt-gray);
  margin: var(--space-2) 0 0;
  padding-top: var(--space-2);
  border-top: 1px solid var(--c-divider);
}

/* ========== 近五赛季数据总览 ========== */
.page-home .hp-data {
  color: var(--c-body-text);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-data__head {
  max-width: 42rem;
  margin-bottom: var(--space-3);
}
.page-home .hp-data__eyebrow {
  color: var(--c-data);
  border-color: var(--c-data);
}
.page-home .hp-data__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin: var(--space-1) 0;
  color: var(--c-body-text);
}
.page-home .hp-data__lead {
  margin: 0;
}
.page-home .hp-data__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.page-home .hp-stat {
  position: relative;
  background: var(--c-deep);
  color: var(--c-txt-light);
  padding: var(--space-3) var(--space-2);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.page-home .hp-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green) 0 70%, var(--c-orange) 70% 100%);
}
.page-home .hp-stat:hover {
  border: 1px solid var(--c-green);
}
.page-home .hp-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--c-orange);
}
.page-home .hp-stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--c-txt-gray);
  margin-top: 0.65rem;
}
.page-home .hp-data__grid {
  display: grid;
  gap: var(--space-3);
  align-items: center;
}
.page-home .hp-data__subhead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 var(--space-1);
  color: var(--c-body-text);
}
.page-home .hp-data__copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 var(--space-2);
}
.page-home .hp-data__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.page-home .hp-data__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.page-home .hp-data__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 2px;
  background: var(--c-green);
}
.page-home .hp-data__figure {
  margin: 0;
  background: var(--c-deep);
  padding: var(--space-2);
  border: 1px solid var(--c-divider);
}
.page-home .hp-data__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .hp-data__caption {
  font-size: 0.8rem;
  color: var(--c-txt-gray);
  padding: var(--space-1) 0 0;
}

/* ========== 战报专栏 ========== */
.page-home .hp-report {
  background: var(--c-dark);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-report__head {
  max-width: 42rem;
  margin-bottom: var(--space-3);
}
.page-home .hp-report__eyebrow {
  color: var(--c-orange);
  border-color: var(--c-orange);
}
.page-home .hp-report__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.08;
  margin: var(--space-1) 0;
  color: var(--c-txt-light);
}
.page-home .hp-report__lead {
  color: var(--c-txt-gray);
  margin: 0;
}
.page-home .hp-report__layout {
  display: grid;
  gap: var(--space-4);
}
.page-home .hp-report__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.page-home .hp-report__item {
  border: 1px solid var(--c-divider);
  background: var(--c-glass);
  transition: border-color 0.2s ease;
}
.page-home .hp-report__item:hover {
  border-color: var(--c-green);
}
.page-home .hp-report__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-1);
  padding: var(--space-2);
  color: var(--c-txt-light);
  transition: color 0.2s ease;
}
.page-home .hp-report__summary::-webkit-details-marker {
  display: none;
}
.page-home .hp-report__item[open] .hp-report__summary {
  color: var(--c-green);
}
.page-home .hp-report__summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--c-orange);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.page-home .hp-report__item[open] .hp-report__summary::after {
  transform: rotate(45deg);
}
.page-home .hp-report__week {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-orange);
  background: rgba(255, 107, 0, 0.12);
  padding: 0.25rem 0.5rem;
}
.page-home .hp-report__topic {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.page-home .hp-report__item p {
  margin: 0;
  padding: 0 var(--space-2) var(--space-2);
  color: var(--c-txt-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}
.page-home .hp-report__btn {
  align-self: flex-start;
  margin-top: var(--space-1);
}
.page-home .hp-report__figure {
  margin: 0;
  background: rgba(6, 18, 41, 0.6);
  border: 1px solid var(--c-divider);
  padding: var(--space-2);
}
.page-home .hp-report__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.page-home .hp-report__caption {
  font-size: 0.8rem;
  color: var(--c-txt-gray);
  padding-top: var(--space-1);
}

/* ========== 苹果端使用工具 ========== */
.page-home .hp-tools {
  background: var(--c-light);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-tools__grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.page-home .hp-tools__scaffold {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.page-home .hp-tools__badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  background: var(--c-deep);
  color: var(--c-green);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
}
.page-home .hp-tools__phone {
  position: relative;
  width: min(78%, 17rem);
  background: var(--c-deep);
  border: 0.4rem solid var(--c-deep);
  border-radius: 1.6rem;
  box-shadow: 0 1.4rem 2.4rem rgba(6, 18, 41, 0.32);
  overflow: hidden;
}
.page-home .hp-tools__phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-divider);
  border-radius: 1.2rem;
  pointer-events: none;
  z-index: 2;
}
.page-home .hp-tools__screen {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .hp-tools__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
}
.page-home .hp-tools__eyebrow {
  color: var(--c-data);
  border-color: var(--c-data);
}
.page-home .hp-tools__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  margin: var(--space-1) 0;
  color: var(--c-body-text);
}
.page-home .hp-tools__lead {
  margin: 0;
}
.page-home .hp-tools__features {
  list-style: none;
  margin: var(--space-1) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-1);
  width: 100%;
}
.page-home .hp-tools__features li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding: var(--space-1) 0;
  border-left: 3px solid var(--c-green);
  background: linear-gradient(90deg, rgba(198, 255, 0, 0.08), transparent 70%);
  padding-left: var(--space-2);
}
.page-home .hp-tools__features strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-body-text);
}
.page-home .hp-tools__features span {
  font-size: 0.85rem;
  color: var(--c-txt-gray);
}
.page-home .hp-tools__switch {
  margin-top: var(--space-1);
  background: var(--c-deep);
  border: 1px solid var(--c-body-text);
  padding: var(--space-2);
  width: 100%;
  transition: border-color 0.2s ease;
}
.page-home .hp-tools__switch:hover {
  border-color: var(--c-orange);
}
.page-home .hp-tools__switch-name {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-1);
  color: var(--c-txt-light);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.page-home .hp-tools__switch-name::-webkit-details-marker {
  display: none;
}
.page-home .hp-tools__switch-name::after {
  content: "切换";
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-orange);
  border: 1px solid var(--c-orange);
  padding: 0.2rem 0.5rem;
}
.page-home .hp-tools__switch[open] .hp-tools__switch-name::after {
  content: "收起";
  background: var(--c-orange);
  color: var(--c-txt-light);
}
.page-home .hp-tools__switch p {
  margin: var(--space-1) 0 0;
  color: var(--c-txt-gray);
  font-size: 0.85rem;
  line-height: 1.6;
}
.page-home .hp-tools__cta {
  margin-top: var(--space-1);
}

/* ========== 球员排名筛选器 ========== */
.page-home .hp-filter {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-filter__head {
  max-width: 42rem;
  margin-bottom: var(--space-3);
}
.page-home .hp-filter__eyebrow {
  color: var(--c-green);
  border-color: var(--c-green);
}
.page-home .hp-filter__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.08;
  margin: var(--space-1) 0;
  color: var(--c-txt-light);
}
.page-home .hp-filter__lead {
  color: var(--c-txt-gray);
  margin: 0;
}
.page-home .hp-filter__panel {
  display: grid;
  gap: var(--space-2);
}
.page-home .hp-filter__details {
  background: var(--c-glass);
  border: 1px solid var(--c-divider);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-home .hp-filter__details:hover {
  border-color: var(--c-green);
}
.page-home .hp-filter__details[open] {
  border-color: var(--c-green);
  background: rgba(198, 255, 0, 0.05);
}
.page-home .hp-filter__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-1);
  padding: var(--space-2);
}
.page-home .hp-filter__summary::-webkit-details-marker {
  display: none;
}
.page-home .hp-filter__position {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-txt-light);
}
.page-home .hp-filter__details[open] .hp-filter__position {
  color: var(--c-green);
}
.page-home .hp-filter__hint {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-txt-gray);
}
.page-home .hp-filter__summary::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--c-orange);
  transform: skewX(-12deg);
  margin-right: 0.25rem;
}
.page-home .hp-filter__body {
  margin: 0;
  padding: 0 var(--space-2) var(--space-2) var(--space-3);
  display: grid;
  gap: 0.35rem;
}
.page-home .hp-filter__body li {
  color: var(--c-txt-light);
  font-size: 0.9rem;
  line-height: 1.55;
}
.page-home .hp-filter__note {
  margin: var(--space-2) 0 0;
  font-size: 0.85rem;
  color: var(--c-txt-gray);
  border-left: 3px solid var(--c-green);
  padding-left: var(--space-2);
}

/* ========== 全站导航入口 ========== */
.page-home .hp-links {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.page-home .hp-links__head {
  max-width: 42rem;
  margin-bottom: var(--space-3);
}
.page-home .hp-links__eyebrow {
  color: var(--c-data);
  border-color: var(--c-data);
}
.page-home .hp-links__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin: var(--space-1) 0;
  color: var(--c-body-text);
}
.page-home .hp-links__lead {
  margin: 0;
}
.page-home .hp-links__grid {
  display: grid;
  gap: var(--space-2);
}
.page-home .hp-links__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--c-light);
  border: 1px solid var(--c-divider);
  color: var(--c-body-text);
  text-decoration: none;
  padding: var(--space-3);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.page-home .hp-links__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, transparent 48%, var(--c-green) 48% 52%, transparent 52%);
  opacity: 0.25;
  transition: opacity 0.2s ease;
}
.page-home .hp-links__card:hover,
.page-home .hp-links__card:focus-visible {
  border-color: var(--c-green);
  transform: translateY(-4px);
  outline: none;
}
.page-home .hp-links__card:hover::before,
.page-home .hp-links__card:focus-visible::before {
  opacity: 1;
}
.page-home .hp-links__card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.page-home .hp-links__card span {
  font-size: 0.85rem;
  color: var(--c-txt-gray);
  line-height: 1.55;
}

/* ========== 桌面端布局 ========== */
@media (min-width: 48em) {
  .page-home .hp-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-4);
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }
  .page-home .hp-hero__visual {
    margin-left: var(--space-2);
  }
  .page-home .hp-hero__photo {
    height: 24rem;
  }
  .page-home .hp-direct__inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
  .page-home .hp-data__track {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .hp-data__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .page-home .hp-report__layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: center;
  }
  .page-home .hp-tools__grid {
    grid-template-columns: 0.62fr 1.38fr;
    gap: var(--space-5);
  }
  .page-home .hp-tools__features li {
    grid-template-columns: 10rem 1fr;
    align-items: baseline;
    gap: var(--space-2);
  }
  .page-home .hp-filter__panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .hp-links__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 64em) {
  .page-home .hp-hero__inner {
    gap: var(--space-5);
  }
  .page-home .hp-hero__photo {
    height: 28rem;
  }
  .page-home .hp-links__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
