.page-home {
  --pm-hero-bg: linear-gradient(135deg, #0B5D3B 0%, #063D26 58%, #1A1A1A 100%);
  --pm-line-gold: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
  --pm-card-clip: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  --pm-card-clip-hover: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  --pm-live-bg: radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 55%), #1A1A1A;
  --pm-trust-accent: rgba(212, 175, 55, 0.18);
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #F5EFE0;
  color: #1A1A1A;
  font-family: var(--font-body);
  line-height: 1.7;
}

.page-home .container {
  width: min(1180px, 100% - 2 * var(--pad));
  margin-inline: auto;
}

.page-home .section {
  padding-block: clamp(64px, 10vw, 120px);
  position: relative;
}

.page-home .section--green {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.page-home .section--green .section-title {
  color: var(--color-paper);
}

.page-home .section--green .section-desc {
  color: rgba(245, 239, 224, 0.78);
}

.page-home .section--black {
  background: var(--pm-live-bg);
  color: var(--color-text-light);
}

.page-home .section--black .section-title {
  color: var(--color-paper);
}

.page-home .section--black .section-desc {
  color: rgba(245, 239, 224, 0.72);
}

.page-home .section--paper {
  background: var(--color-paper);
  color: var(--color-text-dark);
}

.page-home .section-head {
  margin-bottom: clamp(36px, 6vw, 64px);
  max-width: 720px;
  position: relative;
}

.page-home .section-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.page-home .section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-home .section-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 28px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, clip-path 0.25s ease;
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transform: translateY(-2px);
}

.page-home .btn-primary {
  background: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
}

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

.page-home .btn-ghost {
  background: transparent;
  color: var(--color-paper);
  border-color: rgba(245, 239, 224, 0.7);
}

.page-home .section--paper .btn-ghost {
  color: #1A1A1A;
  border-color: rgba(26, 26, 26, 0.4);
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  background: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
}

.page-home .btn-small {
  min-height: 38px;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.page-home .btn-small:hover,
.page-home .btn-small:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #1A1A1A;
}

.page-home .section--green .btn-small {
  color: var(--color-paper);
  border-color: rgba(245, 239, 224, 0.6);
}

.page-home .section--black .btn-small {
  color: var(--color-paper);
  border-color: rgba(245, 239, 224, 0.6);
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--color-paper);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.5);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.page-home .tag:hover,
.page-home .tag:focus-visible {
  background: var(--color-gold);
  color: #1A1A1A;
  transform: translateY(-1px);
}

.page-home .tag--ghost {
  background: transparent;
  border-color: rgba(245, 239, 224, 0.45);
}

.page-home .tag--ghost:hover,
.page-home .tag--ghost:focus-visible {
  background: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
}

.page-home .index-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
}

.page-home .media-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 224, 0.7);
  margin-top: 10px;
  line-height: 1.6;
}

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

/* ===== 01 / 竞技时刻 ===== */
.page-home .pm-hero {
  position: relative;
  background: var(--pm-hero-bg);
  color: var(--color-paper);
  padding: clamp(60px, 10vw, 120px) var(--pad) 0;
  overflow: hidden;
  border-bottom: 4px solid var(--color-gold);
}

.page-home .pm-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(115deg, rgba(245, 239, 224, 0.03) 0, rgba(245, 239, 224, 0.03) 1px, transparent 1px, transparent 24px);
  pointer-events: none;
}

.page-home .pm-hero__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 6vw, 72px);
  position: relative;
  z-index: 2;
}

.page-home .pm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 224, 0.6);
}

.page-home .pm-breadcrumb a {
  color: rgba(245, 239, 224, 0.6);
  text-decoration: none;
}

.page-home .pm-breadcrumb a:hover,
.page-home .pm-breadcrumb a:focus-visible {
  color: var(--color-gold);
}

.page-home .pm-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 224, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.page-home .pm-hero__live-dot {
  width: 8px;
  height: 8px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.page-home .pm-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: end;
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin-inline: auto;
}

.page-home .pm-hero__content {
  max-width: 720px;
}

.page-home .pm-hero__kicker {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-home .pm-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 96px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-home .pm-hero__lede {
  max-width: 580px;
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: rgba(245, 239, 224, 0.82);
}

.page-home .pm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.page-home .pm-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .pm-hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 12px;
}

.page-home .pm-hero__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  filter: saturate(1.1) contrast(1.05);
  border: 2px solid rgba(212, 175, 55, 0.35);
}

.page-home .pm-hero__badge {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: #1A1A1A;
  padding: 14px 22px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  text-align: center;
  box-shadow: var(--shadow);
}

.page-home .pm-hero__badge-num {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-home .pm-hero__badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 4px;
  text-transform: uppercase;
}

.page-home .pm-hero__slant {
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  height: 48px;
  background: var(--pm-line-gold);
  opacity: 0.7;
  transform: skewY(-1.6deg);
  pointer-events: none;
}

.page-home .pm-hero__marquee {
  margin-top: clamp(48px, 8vw, 96px);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding-block: 18px;
  display: flex;
  gap: 36px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
  max-width: calc(100% + 2 * var(--pad));
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.page-home .pm-hero__marquee::-webkit-scrollbar {
  display: none;
}

.page-home .pm-hero__marquee span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);
  flex-shrink: 0;
}

.page-home .pm-hero__marquee span::before {
  content: "◆ ";
  color: var(--color-gold);
}

/* ===== 02 / 功能矩阵 ===== */
.page-home .pm-func {
  position: relative;
  overflow: hidden;
}

.page-home .pm-func::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(212, 175, 55, 0.08) 45%, transparent 70%);
  pointer-events: none;
}

.page-home .pm-func__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
}

.page-home .pm-func__card {
  --pm-card-bg: rgba(245, 239, 224, 0.06);
  position: relative;
  background: var(--pm-card-bg);
  border: 1px solid rgba(245, 239, 224, 0.14);
  padding: clamp(24px, 4vw, 36px);
  clip-path: var(--pm-card-clip);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.page-home .pm-func__card:hover,
.page-home .pm-func__card:focus-within {
  background: rgba(245, 239, 224, 0.1);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-6px);
}

.page-home .pm-func__card--gold {
  --pm-card-bg: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.55);
}

.page-home .pm-func__index {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  color: rgba(212, 175, 55, 0.5);
  margin-bottom: 16px;
}

.page-home .pm-func__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-home .pm-func__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 239, 224, 0.8);
  margin-bottom: 18px;
}

.page-home .pm-func__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}

.page-home .pm-func__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.88);
}

.page-home .pm-func__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 16px;
  line-height: 1.4;
}

.page-home .pm-func__card-bg {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(212, 175, 55, 0.12) 10px, rgba(212, 175, 55, 0.12) 11px);
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .pm-func__media {
  margin: 48px 0 0;
  position: relative;
}

.page-home .pm-func__media-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.page-home .pm-func__switchimg {
  margin-top: 24px;
  max-width: 600px;
}

.page-home .pm-func__switchimg-img {
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

/* ===== 03 / 实时赛程 ===== */
.page-home .pm-live {
  position: relative;
  overflow: hidden;
}

.page-home .pm-live::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
  pointer-events: none;
}

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

.page-home .pm-live__table-wrap {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.22);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  padding: clamp(14px, 2vw, 24px);
  overflow-x: auto;
}

.page-home .pm-live__table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
}

.page-home .pm-live__table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

.page-home .pm-live__table td {
  padding: 14px;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
  color: rgba(245, 239, 224, 0.9);
}

.page-home .pm-live__table tr:last-child td {
  border-bottom: 0;
}

.page-home .pm-live__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-gold);
  white-space: nowrap;
}

.page-home .pm-live__vs {
  color: rgba(245, 239, 224, 0.45);
  font-size: 12px;
  margin-inline: 4px;
  font-family: var(--font-mono);
}

.page-home .pm-live__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 3px 10px;
  border: 1px solid rgba(245, 239, 224, 0.3);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  white-space: nowrap;
}

.page-home .pm-live__status--live {
  border-color: var(--color-gold);
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}

.page-home .pm-live__status--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
  animation: pm-pulse 1.6s ease-in-out infinite;
}

@keyframes pm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-home .pm-live__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.page-home .pm-live__side {
  display: grid;
  gap: 24px;
}

.page-home .pm-live__save {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.5);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  overflow: hidden;
}

.page-home .pm-live__save img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.page-home .pm-live__save-body {
  padding: 22px;
}

.page-home .pm-live__save-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-home .pm-live__save-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 239, 224, 0.8);
  margin-bottom: 18px;
}

.page-home .pm-live__save-btn {
  margin-bottom: 12px;
}

.page-home .pm-live__save-tip {
  font-size: 12px;
  color: rgba(245, 239, 224, 0.6);
  line-height: 1.6;
  border-left: 3px solid var(--color-gold);
  padding-left: 10px;
}

.page-home .pm-live__note {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--color-gold);
}

/* ===== 04 / 数据实力 ===== */
.page-home .pm-stats {
  position: relative;
  overflow: hidden;
}

.page-home .pm-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(160deg, transparent 0, transparent 28px, rgba(212, 175, 55, 0.05) 28px, rgba(212, 175, 55, 0.05) 29px);
  pointer-events: none;
}

.page-home .pm-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.page-home .pm-stats__item {
  background: #FFFFFF;
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: clamp(22px, 3vw, 32px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .pm-stats__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.page-home .pm-stats__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-home .pm-stats__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--color-primary);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.page-home .pm-stats__desc {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.64);
  margin: 0;
}

/* ===== 05 / 信任背书 ===== */
.page-home .pm-trust {
  background: #1A1A1A;
  color: var(--color-paper);
}

.page-home .pm-trust .section-title {
  color: var(--color-paper);
}

.page-home .pm-trust .section-desc {
  color: rgba(245, 239, 224, 0.7);
}

.page-home .pm-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.page-home .pm-trust__card {
  background: rgba(245, 239, 224, 0.05);
  border: 1px solid rgba(245, 239, 224, 0.14);
  padding: clamp(22px, 3vw, 30px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.page-home .pm-trust__card:hover,
.page-home .pm-trust__card:focus-within {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.06);
}

.page-home .pm-trust__card .tag {
  margin-bottom: 16px;
}

.page-home .pm-trust__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-home .pm-trust__card-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 239, 224, 0.78);
}

.page-home .pm-trust__meta {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: rgba(212, 175, 55, 0.06);
  border-left: 4px solid var(--color-gold);
}

.page-home .pm-trust__meta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

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

/* ===== 数据方 ===== */
.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ===== 响应式增强 ===== */
@media (min-width: 640px) {
  .page-home .pm-func__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .pm-func__card:last-child {
    grid-column: span 2;
  }

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

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

  .page-home .pm-live__layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .page-home .pm-hero {
    padding-top: clamp(72px, 10vw, 130px);
  }

  .page-home .pm-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .page-home .pm-hero__title {
    font-size: clamp(72px, 8vw, 108px);
  }

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

  .page-home .pm-func__card:last-child {
    grid-column: span 1;
  }

  .page-home .pm-func__media {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: end;
  }

  .page-home .pm-func__media .media-caption {
    grid-column: 1 / -1;
  }

  .page-home .pm-live__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

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

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

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

@media (max-width: 639px) {
  .page-home .pm-hero__marquee {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .page-home .pm-func__name,
  .page-home .pm-live__save-title,
  .page-home .pm-trust__card-title {
    font-size: 20px;
  }

  .page-home .pm-stats__item {
    padding: 18px;
  }
}
