.page-home {
  --ph-blue: #0A192F;
  --ph-blue-2: #112240;
  --ph-orange: #FF6B35;
  --ph-green: #39FF14;
  --ph-warm: #F5F0E6;
  --ph-text-dim: #B0B8C4;
  --ph-border: #1E3A5F;
  --ph-radius-lg: 28px;
  --ph-radius-md: 18px;
  --ph-radius-pill: 999px;
  --ph-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background-color: var(--ph-blue);
  color: #fff;
  overflow-x: hidden;
}

.page-home .container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.page-home .section {
  position: relative;
  padding-block: 72px 80px;
}

.page-home .section-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ph-orange);
}

.page-home .section-heading {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.page-home .section-warm {
  background-color: var(--ph-warm);
  color: var(--ph-blue);
}

.page-home .section-warm .section-eyebrow {
  color: var(--ph-orange);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ph-radius-pill);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 28px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
  border: 1px solid transparent;
}

.page-home .btn-primary {
  background: var(--ph-orange);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35);
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  background: #e85a27;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.42);
}

.page-home .btn-ghost {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.page-home .section-warm .btn-ghost {
  border-color: var(--ph-blue);
}

.page-home .section-warm .btn-ghost:hover,
.page-home .section-warm .btn-ghost:focus-visible {
  background: rgba(10, 25, 47, 0.06);
}

/* -------------------- 首屏封面 -------------------- */
.page-home .ph-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  overflow: hidden;
  background: var(--ph-blue);
}

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

.page-home .ph-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.32;
  transform: scale(1.05);
}

.page-home .ph-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(118deg, rgba(10, 25, 47, 0.98) 0%, rgba(10, 25, 47, 0.82) 52%, rgba(17, 34, 64, 0.48) 100%);
}

.page-home .ph-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.page-home .ph-hero__kicker {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--ph-green);
  text-transform: uppercase;
}

.page-home .ph-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 108px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.page-home .ph-hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ph-text-dim);
  font-size: 17px;
  line-height: 1.75;
}

.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.page-home .ph-hero__index {
  max-width: 420px;
  border-left: 4px solid var(--ph-orange);
  padding-left: 22px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.08), transparent);
}

.page-home .ph-hero__index-title {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ph-text-dim);
}

.page-home .ph-hero__index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .ph-hero__index-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 8px 9px 0;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  border-radius: 10px;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.page-home .ph-hero__index-list a:hover,
.page-home .ph-hero__index-list a:focus-visible {
  color: var(--ph-orange);
  transform: translateX(6px);
}

.page-home .ph-index-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ph-green);
  width: 28px;
  flex: none;
}

.page-home .ph-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--ph-text-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color var(--dur-fast) var(--ease-out);
}

.page-home .ph-hero__scroll::after {
  content: "";
  width: 42px;
  height: 42px;
  border-right: 2px solid var(--ph-text-dim);
  border-bottom: 2px solid var(--ph-text-dim);
  transform: rotate(45deg);
}

.page-home .ph-hero__scroll:hover,
.page-home .ph-hero__scroll:focus-visible {
  color: var(--ph-orange);
}

/* -------------------- 新入口指引 -------------------- */
.page-home .ph-portal {
  background: var(--ph-blue);
  overflow: hidden;
}

.page-home .ph-portal::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .ph-portal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 64px;
  align-items: center;
}

.page-home .ph-portal__lead {
  color: var(--ph-text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 58ch;
}

.page-home .ph-portal__steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.page-home .ph-portal__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}

.page-home .ph-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ph-blue-2);
  border: 1px solid var(--ph-border);
  color: var(--ph-orange);
  font-family: var(--font-mono);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.page-home .ph-portal__step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
}

.page-home .ph-portal__step p {
  margin: 0;
  color: var(--ph-text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .ph-portal__note {
  margin-top: 40px;
  padding: 16px 20px;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  background: var(--ph-blue-2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.page-home .ph-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ph-green);
  flex: none;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
}

.page-home .ph-portal__visual {
  position: relative;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #14273f, #0a192f);
  border: 1px solid var(--ph-border);
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.page-home .ph-portal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .ph-portal__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--ph-orange);
  color: #fff;
  border-radius: var(--ph-radius-pill);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.page-home .ph-badge-arrow {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

/* -------------------- 赛程 -------------------- */
.page-home .ph-schedule {
  background: var(--ph-warm);
  color: var(--ph-blue);
}

.page-home .ph-schedule__head {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  grid-template-columns: 1fr;
}

.page-home .ph-schedule__desc {
  margin: 0;
  max-width: 52ch;
  color: #3a4657;
  font-size: 15px;
  line-height: 1.65;
}

.page-home .ph-schedule__search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #e2dccf;
  border-radius: var(--ph-radius-pill);
  padding: 8px 20px;
  margin-bottom: 30px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.page-home .ph-schedule__search:focus-within {
  border-color: var(--ph-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

.page-home .ph-search-icon {
  color: var(--ph-orange);
  flex: none;
}

.page-home .ph-schedule__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ph-blue);
  font-family: var(--font-body);
}

.page-home .ph-schedule__search input::placeholder {
  color: #8a9386;
}

.page-home .ph-schedule__search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.page-home .search-status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #58626e;
  margin: -16px 0 22px;
}

.page-home .ph-schedule__list {
  display: grid;
  gap: 26px;
}

.page-home .is-search-hidden {
  display: none !important;
}

.page-home .ph-match-day {
  border-left: 4px solid var(--ph-orange);
  padding-left: 20px;
  background: linear-gradient(94deg, rgba(255, 107, 53, 0.06), transparent 68%);
}

.page-home .ph-match-day__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .ph-round-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: var(--ph-radius-pill);
  background: var(--ph-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.page-home .ph-round-chip--hot {
  background: var(--ph-orange);
}

.page-home .ph-date-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #58626e;
  letter-spacing: 0.6px;
}

.page-home .ph-match-day__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .ph-match-card {
  background: #fff;
  border-radius: var(--ph-radius-md);
  padding: 20px 22px;
  border: 1px solid #e7e0d2;
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.06);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.page-home .ph-match-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(10, 25, 47, 0.12);
}

.page-home .ph-match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
}

.page-home .ph-match-teams b {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ph-orange);
  letter-spacing: 1px;
}

.page-home .ph-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #ddd5c6;
  font-size: 13px;
  color: #6a746e;
}

.page-home .ph-match-card--upcoming .ph-match-teams b {
  color: var(--ph-blue);
  font-size: 19px;
  letter-spacing: 0.4px;
}

.page-home .ph-schedule__footer {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(10, 25, 47, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.page-home .ph-schedule__tip {
  margin: 0;
  font-size: 14px;
  color: #58626e;
  line-height: 1.6;
  max-width: 60ch;
}

/* -------------------- 战报与热力图 -------------------- */
.page-home .ph-reports {
  background: var(--ph-blue);
}

.page-home .ph-reports__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 46px;
}

.page-home .ph-reports__desc {
  margin: 0;
  color: var(--ph-text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}

.page-home .ph-reports__showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  background: var(--ph-blue-2);
  padding: 24px;
  margin-bottom: 40px;
}

.page-home .ph-reports__img-wrap {
  border-radius: var(--ph-radius-md);
  overflow: hidden;
  background: #081627;
}

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

.page-home .ph-reports__analysis .chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--ph-radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.page-home .ph-reports__analysis h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.2;
}

.page-home .ph-reports__analysis p {
  margin: 0 0 24px;
  color: var(--ph-text-dim);
  line-height: 1.75;
  font-size: 15px;
}

.page-home .ph-reports__stats {
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--ph-border);
}

.page-home .ph-reports__stats div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ph-border);
}

.page-home .ph-reports__stats dt {
  color: var(--ph-text-dim);
  font-size: 14px;
}

.page-home .ph-reports__stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ph-green);
}

.page-home .ph-reports__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .ph-report-card {
  background: linear-gradient(158deg, var(--ph-blue-2) 0%, #0d2037 100%);
  border-radius: var(--ph-radius-md);
  padding: 24px;
  border: 1px solid var(--ph-border);
  position: relative;
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.page-home .ph-report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.5);
}

.page-home .ph-report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 52px;
  height: 4px;
  background: var(--ph-orange);
  border-radius: 2px;
}

.page-home .ph-report-card__round {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ph-text-dim);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.page-home .ph-report-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.3;
}

.page-home .ph-report-card p {
  margin: 0;
  color: var(--ph-text-dim);
  font-size: 14px;
  line-height: 1.65;
}

.page-home .ph-report-card__link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ph-orange);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.page-home .ph-report-card__link:hover,
.page-home .ph-report-card__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------- 数据面板 -------------------- */
.page-home .ph-panel {
  background: var(--ph-warm);
  color: var(--ph-blue);
}

.page-home .ph-panel__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.page-home .ph-panel__lead {
  margin: 0;
  color: #3a4657;
  line-height: 1.75;
  font-size: 16px;
}

.page-home .ph-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .ph-panel__stats .stat-card {
  background: var(--ph-blue);
  color: #fff;
  border-radius: var(--ph-radius-md);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--ph-orange);
  box-shadow: var(--ph-shadow);
}

.page-home .ph-panel__stats .stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.5px;
}

.page-home .ph-panel__stats .stat-value em {
  font-style: normal;
  font-size: 22px;
  color: var(--ph-orange);
  margin-left: 4px;
}

.page-home .ph-panel__stats .stat-label {
  color: var(--ph-text-dim);
  font-size: 13px;
  line-height: 1.4;
}

.page-home .ph-panel__note-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .ph-panel__promise {
  background: #fff;
  border: 1px solid #e7e0d2;
  border-radius: var(--ph-radius-md);
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.page-home .ph-shield {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ph-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: none;
}

.page-home .ph-shield--green {
  background: #3b8b2a;
}

.page-home .ph-panel__promise h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.page-home .ph-panel__promise p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3a4657;
}

.page-home .ph-panel__trust {
  margin: 0;
  padding: 18px 22px;
  border-radius: var(--ph-radius-md);
  background: var(--ph-blue);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

/* -------------------- 登录排查 -------------------- */
.page-home .ph-faq {
  background: var(--ph-blue);
}

.page-home .ph-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-home .ph-faq__lead {
  color: var(--ph-text-dim);
  line-height: 1.75;
  font-size: 16px;
}

.page-home .ph-faq__list {
  display: grid;
  gap: 16px;
}

.page-home .ph-faq__item {
  background: var(--ph-blue-2);
  border-radius: var(--ph-radius-md);
  padding: 22px 24px;
  border-left: 4px solid var(--ph-orange);
  transition: transform var(--dur-fast) var(--ease-out);
}

.page-home .ph-faq__item:hover {
  transform: translateX(4px);
}

.page-home .ph-faq__item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
}

.page-home .ph-faq__item p {
  margin: 0;
  color: var(--ph-text-dim);
  line-height: 1.7;
  font-size: 14px;
}

/* -------------------- 联系提示 -------------------- */
.page-home .ph-connect {
  background: linear-gradient(118deg, #0a192f 0%, #10213a 100%);
  border-top: 1px solid var(--ph-border);
  padding-block: 56px;
}

.page-home .ph-connect__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .ph-connect .section-heading {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.page-home .ph-connect__info {
  display: grid;
  gap: 8px;
}

.page-home .ph-connect__line {
  margin: 0;
  color: var(--ph-text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .ph-connect .btn-ghost {
  justify-self: start;
}

/* -------------------- 滚动显现支持 -------------------- */
.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.page-home [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .ph-hero__bg-img {
    transform: none;
  }

  .page-home * {
    scroll-behavior: auto !important;
  }
}

/* -------------------- 触屏横滑优化 -------------------- */
@media (hover: none) and (pointer: coarse) {
  .page-home .ph-hero {
    min-height: auto;
    padding: 100px 0 80px;
  }
}

/* -------------------- 桌面端布局 -------------------- */
@media (min-width: 720px) {
  .page-home .section {
    padding-block: 96px 108px;
  }

  .page-home .ph-match-day__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .ph-panel__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .ph-panel__note-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-home .ph-faq__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-home .ph-hero__inner {
    grid-template-columns: 1fr 340px;
    align-items: end;
    gap: 56px;
  }

  .page-home .ph-hero__index {
    margin-bottom: 10px;
  }

  .page-home .ph-portal__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-home .ph-schedule__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home .ph-schedule__desc {
    justify-self: end;
  }

  .page-home .ph-reports__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home .ph-reports__desc {
    justify-self: end;
  }

  .page-home .ph-reports__showcase {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 30px;
  }

  .page-home .ph-schedule__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .ph-schedule__tip {
    text-align: right;
  }

  .page-home .ph-connect__inner {
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
  }

  .page-home .ph-connect__info {
    justify-self: center;
  }
}

@media (min-width: 1200px) {
  .page-home .ph-hero__title {
    font-size: 116px;
  }
}
